Chromium Code Reviews| Index: chrome/common/extensions/docs/examples/api/tabs/manifest.json |
| diff --git a/chrome/common/extensions/docs/examples/api/tabs/manifest.json b/chrome/common/extensions/docs/examples/api/tabs/manifest.json |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..d662ce0192a9e28755eac9d021b5492a8bd3091e |
| --- /dev/null |
| +++ b/chrome/common/extensions/docs/examples/api/tabs/manifest.json |
| @@ -0,0 +1,28 @@ |
| +{ |
| + "manifest_version": 2, |
| + |
| + "name": "Tabs Zoom API Demo", |
| + "description": "This extension allows the user to explore features of the new tabs zoom api.", |
| + |
| + "version": "0.1", |
| + |
| + "permissions": [ |
| + "tabs" |
|
raymes
2014/07/17 00:39:10
nit: 2 space indent
I'm not sure if the tabs permi
wjmaclean
2014/07/17 18:46:26
Done.
|
| + ], |
| + |
| + "icons": { |
| + "16": "zoom16.png", |
| + "48": "zoom48.png" |
| + }, |
| + |
| + "background": { |
| + "scripts": ["background.js"], |
| + "persistent": false |
| + }, |
| + |
| + "browser_action": { |
| + "default_icon": "zoom19.png", |
|
raymes
2014/07/17 00:39:10
nit: 2 space indent
wjmaclean
2014/07/17 18:46:26
Done.
|
| + "default_title": "Zoom Extension Demo", |
| + "default_popup": "popup.html" |
| + } |
| +} |