Chromium Code Reviews| Index: chrome/test/data/extensions/samples/icon_size_test/manifest.json |
| diff --git a/chrome/test/data/extensions/samples/icon_size_test/manifest.json b/chrome/test/data/extensions/samples/icon_size_test/manifest.json |
| new file mode 100755 |
| index 0000000000000000000000000000000000000000..7735277a2f194c5f3bd753b2df389d678eec5966 |
| --- /dev/null |
| +++ b/chrome/test/data/extensions/samples/icon_size_test/manifest.json |
| @@ -0,0 +1,19 @@ |
| +{ |
| + "name": "A browser action with a large icon", |
| + "version": "1.0", |
| + "permissions": [ |
| + "tabs", "http://*/*" |
| + ], |
| + "browser_action": { |
| + "name": "Make this page red", |
| + "icons": ["icon.png"] |
| + }, |
| + "page_actions": [ |
| + { |
| + "id": "foo", |
| + "name": "foobar", |
| + "icons": ["icon.png"] |
| + } |
| + ], |
| + "background_page": "background.html" |
| +} |