Home | History | Annotate | Download | only in extension
      1 {
      2   "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQD69MHTFB90q+MCBlimEUDAwv9aAUS5Utkfs8YNSJein64VxlZKNFSCO501ork0MB92uH02Ic5CzwGkfAucdaj/KBM0vg7HJINZUzKYJjBXgaeOO00WCT29VilNdKyEkXLSHGuK9gIK/i72FNEldHJJ6JvWSvXUbZyBP4ZaxQsgtwIDAQAB",
      3   "manifest_version": 2,
      4   "name": "Power Test",
      5   "version": "2.0",
      6   "browser_action": {
      7     "default_icon": "skin/chrome_bug.png",
      8     "default_title": "test the web with the web"
      9   },
     10   "icons": { "48": "skin/chrome_bug.png",
     11           "128": "skin/chrome_bug.png" },
     12   "permissions": [
     13     "http://*/", "https://*/", "tabs"
     14   ],
     15   "background": {
     16     "persistent": true,
     17     "page": "bg.html"
     18   },
     19   "description": "GoogleTest",
     20   "content_scripts": [
     21     {
     22       "matches": ["http://*/*", "https://*/*"],
     23       "js": ["ct.js"],
     24       "run_at": "document_end",
     25       "all_frames": false
     26     }
     27   ]
     28 }
     29