manifest.json revision 5d1f7b1de12d16ceb2c938c56701a3e8bfa558f7
1{
2  "name" : "SandwichBar",
3  "version" : "1.0.1",
4  "description" : "Shows an infobar on pages which contain the word 'sandwich'",
5  "background" : {
6    "scripts": ["background.js"]
7  },
8  "permissions" : [ "infobars" ],
9  "icons" : {
10    "16" : "sandwich-16.png",
11    "48" : "sandwich-48.png",
12    "128" : "sandwich-128.png"
13  },
14  "content_scripts" : [
15    {
16      "matches" : [ 
17         "http://*/*",
18         "https://*/*"
19      ],
20      "js" : [ "contentscript.js" ],
21      "run_at" : "document_idle",
22      "all_frames" : false
23    }
24  ],
25  "manifest_version": 2
26}
27