| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "A browser action that makes the active tab's background red", | 2 "name": "A browser action that makes the active tab's background red", |
| 3 "version": "1.0", | 3 "version": "1.0", |
| 4 "manifest_version": 2, |
| 4 "background_page": "background.html", | 5 "background_page": "background.html", |
| 5 "permissions": [ | 6 "permissions": [ |
| 6 "tabs", "file://*" | 7 "tabs", "file://*" |
| 7 ], | 8 ], |
| 8 "browser_action": { | 9 "browser_action": { |
| 9 "name": "Make this page red", | 10 "name": "Make this page red", |
| 10 "default_icon": "icon.png" | 11 "default_icon": "icon.png" |
| 11 } | 12 } |
| 12 } | 13 } |
| OLD | NEW |