Home | History | Annotate | Download | only in access_chromevox
      1 {
      2   "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDltVl1k15pjRzuZfMc3B69inxwm2bZeZ2O8/zFO+NluHnBm3GJ3fzdOoFGJd+M16I8p7zxxQyHeDMfWYASyCeB8XnUEDKjqNLQfCnncsANzHsYoEbYj2nEUML2P13b9q+AAvpCBpAJ4cZp81e9n1y/vbSXHE4385cgkKueItzikQIDAQAB",
      3   "manifest_version": 2,
      4   "name": "ChromeVox",
      5   "version": "1.0",
      6   "description": "ChromeVox - Giving Voice to Chrome.",
      7   "background": {
      8     "page": "chromevox/background/background.html"
      9   },
     10   "permissions": [
     11     "bookmarks",
     12     "tabs",
     13     "experimental",
     14     "tts",
     15     "systemPrivate",
     16     "<all_urls>"
     17   ],
     18   "content_scripts": [
     19     {
     20       "matches": [ "<all_urls>" ],
     21       "all_frames": true,
     22       "js": [
     23         "chromeVoxChromePageScript.js"
     24       ]
     25     }
     26   ],
     27   "web_accessible_resources": [
     28     "chromevox/injected/api.js",
     29     "chromevox/injected/api_util.js",
     30     "chromevox/injected/mathjax.js",
     31     "chromevox/injected/mathjax_external_util.js"
     32   ],
     33   "default_locale": "en"
     34 }
     35