summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/docs/examples/api/infobars/sandwichbar/manifest.json
blob: 89bdb5144cb755ebfdf609ee9ee3fe2f35c0cd6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  "name" : "SandwichBar",
  "version" : "1.0.0",
  "description" : "Shows an infobar on pages which contain the word 'sandwich'",
  "background_page" : "background.html",
  "permissions" : [ "experimental" ],
  "icons" : {
    "16" : "sandwich-16.png",
    "48" : "sandwich-48.png",
    "128" : "sandwich-128.png"
  },
  "content_scripts" : [
    {
      "matches" : [ "http://*/*" ],
      "js" : [ "contentscript.js" ],
      "run_at" : "document_idle",
      "all_frames" : false
    }
  ]
}