| OLD | NEW |
| 1 { | 1 { |
| 2 "background_page": "background.html", | 2 "background_page": "background.html", |
| 3 "content_scripts": [ { | 3 "content_scripts": [ { |
| 4 "js": [ "script.js" ], | 4 "js": [ "script.js" ], |
| 5 "matches": [ "http://*/*" ] | 5 "matches": [ "http://*/*" ] |
| 6 } ], | 6 } ], |
| 7 "description": "A page action with incorrect icon specification", | 7 "description": "A page action with incorrect icon specification", |
| 8 "name": "Test extension", | 8 "name": "Test extension", |
| 9 "page_actions": [ { | 9 "page_actions": [ { |
| 10 "icon": "chrome-16.png", | 10 "icon": "chrome-16.png", |
| 11 "id": "TestId", | 11 "id": "TestId", |
| 12 "name": "Page action name", | 12 "name": "Page action name", |
| 13 "tooltip": "Page action tooltip" | 13 "tooltip": "Page action tooltip" |
| 14 } ], | 14 } ], |
| 15 "permissions": [ "http://*/*" ], | 15 "permissions": [ "http://*/*" ], |
| 16 "manifest_version": 2, |
| 16 "version": "1.0" | 17 "version": "1.0" |
| 17 } | 18 } |
| OLD | NEW |