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