summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/resources/chromeos/chromevox/manifest.json.jinja2
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/browser/resources/chromeos/chromevox/manifest.json.jinja2')
-rw-r--r--chromium/chrome/browser/resources/chromeos/chromevox/manifest.json.jinja260
1 files changed, 60 insertions, 0 deletions
diff --git a/chromium/chrome/browser/resources/chromeos/chromevox/manifest.json.jinja2 b/chromium/chrome/browser/resources/chromeos/chromevox/manifest.json.jinja2
new file mode 100644
index 00000000000..b55721acfb0
--- /dev/null
+++ b/chromium/chrome/browser/resources/chromeos/chromevox/manifest.json.jinja2
@@ -0,0 +1,60 @@
+{
+ "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDltVl1k15pjRzuZfMc3B69inxwm2bZeZ2O8/zFO+NluHnBm3GJ3fzdOoFGJd+M16I8p7zxxQyHeDMfWYASyCeB8XnUEDKjqNLQfCnncsANzHsYoEbYj2nEUML2P13b9q+AAvpCBpAJ4cZp81e9n1y/vbSXHE4385cgkKueItzikQIDAQAB",
+ "manifest_version": 2,
+ "name": "ChromeVox",
+ "version": "1.0",
+ "description": "ChromeVox - Giving Voice to Chrome.",
+{% if is_guest_manifest == '1' %}
+ "incognito": "split",
+{% endif %}
+ "background": {
+{% if use_chromevox_next == '1' %}
+ "page": "cvox2/background/background.html"
+{% else %}
+ "page": "chromevox/background/background.html"
+{% endif %}
+ },
+ "permissions": [
+ "accessibilityPrivate",
+ "automation",
+ "bookmarks",
+ "tabs",
+ "experimental",
+ "history",
+ "tts",
+ "systemPrivate",
+ "brailleDisplayPrivate",
+ "commandLinePrivate",
+ "virtualKeyboardPrivate",
+ "<all_urls>"
+ ],
+ "content_scripts": [
+ {
+ "matches": [ "<all_urls>" ],
+ "exclude_globs": [ "chrome-extension://mndnfokpggljbaajbnioimlmbfngpief/chromevox/background/background.html" ],
+ "all_frames": true,
+ "js": [
+{% if use_chromevox_next == '1' %}
+ "closure/closure_preinit.js",
+ "closure/base.js",
+ "deps.js",
+ "cvox2/injected/loader.js"
+{% else %}
+ "chromeVoxChromePageScript.js"
+{% endif %}
+ ]
+ }
+ ],
+ "web_accessible_resources": [
+ "chromevox/injected/api.js",
+ "chromevox/injected/api_util.js",
+ "chromevox/injected/mathjax.js",
+ "chromevox/injected/mathjax_external_util.js"
+ ],
+{% if use_chromevox_next == '1' %}
+ "automation": {
+ "desktop": true
+ },
+{% endif %}
+ "default_locale": "en"
+}