Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(878)

Side by Side Diff: chrome/browser/resources/chromeos/chromevox2/manifest.json

Issue 272013002: Provide skeleton for ChromeVox next. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase again. Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 { 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", 2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDltVl1k15pjRzuZfMc3B69inxwm2bZeZ 2O8/zFO+NluHnBm3GJ3fzdOoFGJd+M16I8p7zxxQyHeDMfWYASyCeB8XnUEDKjqNLQfCnncsANzHsYoE bYj2nEUML2P13b9q+AAvpCBpAJ4cZp81e9n1y/vbSXHE4385cgkKueItzikQIDAQAB",
5 "manifest_version": 2, 3 "manifest_version": 2,
6 "name": "ChromeVox", 4 "name": "ChromeVox",
7 "version": "1.0", 5 "version": "1.0",
8 "description": "ChromeVox - Giving Voice to Chrome.", 6 "description": "ChromeVox - Giving Voice to Chrome.",
9 "background": { 7 "background": {
10 "page": "chromevox/background/background.html" 8 "page": "cvox2/background/background.html"
11 }, 9 },
10 "content_scripts": [
11 {
12 "matches": [ "<all_urls>" ],
13 "exclude_globs": [ "chrome-extension://mndnfokpggljbaajbnioimlmbfngpief/ch romevox/background/background.html" ],
14 "all_frames": true,
15 "js": [
16 "cvox2/injected/injected.js"
17 ]
18 }
19 ],
12 "permissions": [ 20 "permissions": [
13 "accessibilityPrivate", 21 "accessibilityPrivate",
14 "automation", 22 "automation",
15 "bookmarks", 23 "bookmarks",
16 "tabs", 24 "tabs",
17 "experimental", 25 "experimental",
18 "history", 26 "history",
19 "tts", 27 "tts",
20 "systemPrivate", 28 "systemPrivate",
21 "brailleDisplayPrivate", 29 "brailleDisplayPrivate",
22 "commandLinePrivate", 30 "commandLinePrivate",
23 "<all_urls>" 31 "<all_urls>"
24 ], 32 ],
25 "content_scripts": [ 33 "automation": {
26 { 34 "desktop": true,
27 "matches": [ "<all_urls>" ], 35 "interact": true
28 "exclude_globs": [ "chrome-extension://mndnfokpggljbaajbnioimlmbfngpief/ch romevox/background/background.html" ], 36 },
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" 37 "default_locale": "en"
42 } 38 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/chromevox2/cvox2/injected/injected.js ('k') | chrome/chrome_resources.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698