Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 "name": "A browser action which changes its icon when clicked.", | 2 "name": "A browser action which changes its icon when clicked.", |
| 3 "version": "1.0", | 3 "version": "1.1", |
| 4 "background_page": "background.html", | 4 "background_page": "background.html", |
| 5 "permissions": [ | 5 "permissions": [ |
| 6 "tabs", "http://*/*" | 6 "tabs", "http://*/*" |
| 7 ], | 7 ], |
| 8 "browser_action": { | 8 "browser_action": { |
| 9 "name": "Click to change the icon's color" | 9 "name": "Click to change the icon's color" |
| 10 } | 10 }, |
| 11 "content_security_policy": "default-src 'self';" | |
|
abarth-chromium
2011/10/15 08:55:25
No need for a ; at the end.
| |
| 11 } | 12 } |
| OLD | NEW |