OLD | NEW |
1 { | 1 { |
2 "name" : "SandwichBar", | 2 "name" : "SandwichBar", |
3 "version" : "1.0.1", | 3 "version" : "1.0.1", |
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" : { | 5 "background" : { |
6 "scripts": ["background.js"] | 6 "scripts": ["background.js"] |
7 }, | 7 }, |
8 "permissions" : [ "experimental" ], | 8 "permissions" : [ "infobars" ], |
9 "icons" : { | 9 "icons" : { |
10 "16" : "sandwich-16.png", | 10 "16" : "sandwich-16.png", |
11 "48" : "sandwich-48.png", | 11 "48" : "sandwich-48.png", |
12 "128" : "sandwich-128.png" | 12 "128" : "sandwich-128.png" |
13 }, | 13 }, |
14 "content_scripts" : [ | 14 "content_scripts" : [ |
15 { | 15 { |
16 "matches" : [ "http://*/*" ], | 16 "matches" : [ "http://*/*" ], |
17 "js" : [ "contentscript.js" ], | 17 "js" : [ "contentscript.js" ], |
18 "run_at" : "document_idle", | 18 "run_at" : "document_idle", |
19 "all_frames" : false | 19 "all_frames" : false |
20 } | 20 } |
21 ], | 21 ], |
22 "manifest_version": 2 | 22 "manifest_version": 2 |
23 } | 23 } |
OLD | NEW |