manifest.json revision a36e5920737c6adbddd3e43b760e5de8431db6e0
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" : [ "http://*/*" ],
17      "js" : [ "contentscript.js" ],
18      "run_at" : "document_idle",
19      "all_frames" : false
20    }
21  ],
22  "manifest_version": 2
23}
24