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