Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 { | |
| 2 "manifest_version": 2, | |
| 3 | |
| 4 "name": "Tabs Zoom API Demo", | |
| 5 "description": "This extension allows the user to explore features of the new tabs zoom api.", | |
| 6 | |
| 7 "version": "0.1", | |
| 8 | |
| 9 "permissions": [ | |
| 10 "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.
| |
| 11 ], | |
| 12 | |
| 13 "icons": { | |
| 14 "16": "zoom16.png", | |
| 15 "48": "zoom48.png" | |
| 16 }, | |
| 17 | |
| 18 "background": { | |
| 19 "scripts": ["background.js"], | |
| 20 "persistent": false | |
| 21 }, | |
| 22 | |
| 23 "browser_action": { | |
| 24 "default_icon": "zoom19.png", | |
|
raymes
2014/07/17 00:39:10
nit: 2 space indent
wjmaclean
2014/07/17 18:46:26
Done.
| |
| 25 "default_title": "Zoom Extension Demo", | |
| 26 "default_popup": "popup.html" | |
| 27 } | |
| 28 } | |
| OLD | NEW |