| 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://*/*", "https://*/*" ] | 5 "matches": [ "http://*/*", "https://*/*" ] |
| 6 } ], | 6 } ], |
| 7 "description": "Test url changes with hash-code", | 7 "description": "Test url changes with hash-code", |
| 8 "name": "Hash-code changes", | 8 "name": "Hash-code changes", |
| 9 "page_action": { | 9 "page_action": { |
| 10 "default_icon": "icon.png", | 10 "default_icon": "icon.png", |
| 11 "default_title": "Page action" | 11 "default_title": "Page action" |
| 12 }, | 12 }, |
| 13 "permissions": [ "tabs", "http://*/*", "https://*/*" ], | 13 "permissions": [ "tabs", "http://*/*", "https://*/*" ], |
| 14 "manifest_version": 2, |
| 14 "version": "1.0" | 15 "version": "1.0" |
| 15 } | 16 } |
| OLD | NEW |