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 "background": { 10 "page": "chromevox/background/background.html" 11 }, 12 "permissions": [ 13 "bookmarks", 14 "tabs", 15 "experimental", 16 "history", 17 "tts", 18 "systemPrivate", 19 "brailleDisplayPrivate", 20 "<all_urls>" 21 ], 22 "content_scripts": [ 23 { 24 "matches": [ "<all_urls>" ], 25 "all_frames": true, 26 "js": [ 27 "chromeVoxChromePageScript.js" 28 ] 29 } 30 ], 31 "web_accessible_resources": [ 32 "chromevox/injected/api.js", 33 "chromevox/injected/api_util.js", 34 "chromevox/injected/mathjax.js", 35 "chromevox/injected/mathjax_external_util.js" 36 ], 37 "default_locale": "en" 38 } 39