| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "Top Chrome Extension Questions", | 2 "name": "Top Chrome Extension Questions", |
| 3 "version": "0.1", | 3 "version": "0.2", |
| 4 "description": "Sample demonstration of the optional permissions API.", | 4 "description": "Sample demonstration of the optional permissions API.", |
| 5 "icons": { | 5 "icons": { |
| 6 "128": "images/icon.png", | 6 "128": "images/icon.png", |
| 7 "48": "images/icon.png", | 7 "48": "images/icon.png", |
| 8 "16": "images/icon.png" | 8 "16": "images/icon.png" |
| 9 }, | 9 }, |
| 10 "browser_action": { | 10 "browser_action": { |
| 11 "default_icon": "images/icon.png", | 11 "default_icon": "images/icon.png", |
| 12 "default_popup": "popup.html" | 12 "default_popup": "popup.html" |
| 13 }, | 13 }, |
| 14 "options_page": "options.html", | 14 "options_page": "options.html", |
| 15 "permissions": ["experimental"], | 15 "permissions": ["experimental"], |
| 16 "optional_permissions": ["http://api.stackoverflow.com/"] | 16 "optional_permissions": ["http://api.stackoverflow.com/"], |
| 17 "manifest_version": 2 |
| 17 } | 18 } |
| OLD | NEW |