| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "Chrome Sounds", | 2 "name": "Chrome Sounds", |
| 3 "version": "1.1", | 3 "version": "1.1", |
| 4 "description": "Enjoy a more magical and immersive experience when browsing th
e web using the power of sound.", | 4 "description": "Enjoy a more magical and immersive experience when browsing th
e web using the power of sound.", |
| 5 "background_page": "bg.html", | 5 "background_page": "bg.html", |
| 6 "options_page": "options.html", | 6 "options_page": "options.html", |
| 7 "icons": { "128": "icon.png" }, | 7 "icons": { "128": "icon.png" }, |
| 8 "permissions": [ | 8 "permissions": [ |
| 9 "tabs", | 9 "tabs", |
| 10 "bookmarks", | 10 "bookmarks", |
| 11 "http://*/*", | 11 "http://*/*", |
| 12 "https://*/*" | 12 "https://*/*" |
| 13 ], | 13 ], |
| 14 "content_scripts": [ { | 14 "content_scripts": [ { |
| 15 "matches": ["http://*/*", "https://*/*"], | 15 "matches": ["http://*/*", "https://*/*"], |
| 16 "js": ["content.js"], | 16 "js": ["content.js"], |
| 17 "all_frames": true | 17 "all_frames": true |
| 18 }] | 18 }], |
| 19 "content_security_policy": "default-src 'self'" |
| 19 } | 20 } |
| OLD | NEW |