manifest.json.jinja2 revision cedac228d2dd51db4b79ea1e72c7f249408ee061
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{% if is_guest_manifest == '1' %}
8    "incognito": "split",
9{% endif %}
10  "background": {
11    "page": "chromevox/background/background.html"
12  },
13  "permissions": [
14    "accessibilityPrivate",
15    "automation",
16    "bookmarks",
17    "tabs",
18    "experimental",
19    "history",
20    "tts",
21    "systemPrivate",
22    "brailleDisplayPrivate",
23    "commandLinePrivate",
24    "<all_urls>"
25  ],
26  "content_scripts": [
27    {
28      "matches": [ "<all_urls>" ],
29      "exclude_globs": [ "chrome-extension://mndnfokpggljbaajbnioimlmbfngpief/chromevox/background/background.html" ],
30      "all_frames": true,
31      "js": [
32        "chromeVoxChromePageScript.js"
33      ]
34    }
35  ],
36  "web_accessible_resources": [
37    "chromevox/injected/api.js",
38    "chromevox/injected/api_util.js",
39    "chromevox/injected/mathjax.js",
40    "chromevox/injected/mathjax_external_util.js"
41  ],
42  "default_locale": "en"
43}
44