| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "A browser action with a popup that changes the page color.", | 2 "name": "A browser action with a popup that changes the page color.", |
| 3 "version": "1.0", | 3 "version": "1.0", |
| 4 "permissions": [ | 4 "permissions": [ |
| 5 "tabs", "http://*/*", "https://*/*" | 5 "tabs", "http://*/*", "https://*/*" |
| 6 ], | 6 ], |
| 7 "browser_action": { | 7 "browser_action": { |
| 8 "default_title": "Set this page's color.", | 8 "default_title": "Set this page's color.", |
| 9 "default_icon": "icon.png", | 9 "default_icon": "icon.png", |
| 10 "popup": "popup.html" | 10 "popup": "popup.html" |
| 11 } | 11 }, |
| 12 } | 12 "content_security_policy": "default-src 'self'" |
| 13 } |
| OLD | NEW |