| OLD | NEW |
| (Empty) |
| 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": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDltVl1k15pjRzuZfMc3B69inxwm2bZeZ
2O8/zFO+NluHnBm3GJ3fzdOoFGJd+M16I8p7zxxQyHeDMfWYASyCeB8XnUEDKjqNLQfCnncsANzHsYoE
bYj2nEUML2P13b9q+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 "accessibilityPrivate", | |
| 14 "automation", | |
| 15 "bookmarks", | |
| 16 "tabs", | |
| 17 "experimental", | |
| 18 "history", | |
| 19 "tts", | |
| 20 "systemPrivate", | |
| 21 "brailleDisplayPrivate", | |
| 22 "commandLinePrivate", | |
| 23 "<all_urls>" | |
| 24 ], | |
| 25 "content_scripts": [ | |
| 26 { | |
| 27 "matches": [ "<all_urls>" ], | |
| 28 "exclude_globs": [ "chrome-extension://mndnfokpggljbaajbnioimlmbfngpief/ch
romevox/background/background.html" ], | |
| 29 "all_frames": true, | |
| 30 "js": [ | |
| 31 "chromeVoxChromePageScript.js" | |
| 32 ] | |
| 33 } | |
| 34 ], | |
| 35 "web_accessible_resources": [ | |
| 36 "chromevox/injected/api.js", | |
| 37 "chromevox/injected/api_util.js", | |
| 38 "chromevox/injected/mathjax.js", | |
| 39 "chromevox/injected/mathjax_external_util.js" | |
| 40 ], | |
| 41 "default_locale": "en" | |
| 42 } | |
| OLD | NEW |