| OLD | NEW |
| 1 { | 1 { |
| 2 "name" : "SandwichBar", | 2 "name" : "SandwichBar", |
| 3 "version" : "1.0.0", | 3 "version" : "1.0.0", |
| 4 "description" : "Shows an infobar on pages which contain the word 'sandwich'", | 4 "description" : "Shows an infobar on pages which contain the word 'sandwich'", |
| 5 "background_page" : "background.html", | 5 "background_page" : "background.html", |
| 6 "permissions" : [ "experimental" ], | 6 "permissions" : [ "experimental" ], |
| 7 "icons" : { | 7 "icons" : { |
| 8 "16" : "sandwich-16.png", | 8 "16" : "sandwich-16.png", |
| 9 "48" : "sandwich-48.png", | 9 "48" : "sandwich-48.png", |
| 10 "128" : "sandwich-128.png" | 10 "128" : "sandwich-128.png" |
| 11 }, | 11 }, |
| 12 "content_scripts" : [ | 12 "content_scripts" : [ |
| 13 { | 13 { |
| 14 "matches" : [ "http://*/*" ], | 14 "matches" : [ "http://*/*" ], |
| 15 "js" : [ "contentscript.js" ], | 15 "js" : [ "contentscript.js" ], |
| 16 "run_at" : "document_idle", | 16 "run_at" : "document_idle", |
| 17 "all_frames" : false | 17 "all_frames" : false |
| 18 } | 18 } |
| 19 ] | 19 ], |
| 20 "content_security_policy": "default-src 'self'" |
| 20 } | 21 } |
| OLD | NEW |