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

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

Issue 130503010: Give chromevox access to the commandLinePrivate API on chromeos. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Created 6 years, 11 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDltVl1k15pjRzuZfMc3B69inxwm2bZeZ 2O8/zFO+NluHnBm3GJ3fzdOoFGJd+M16I8p7zxxQyHeDMfWYASyCeB8XnUEDKjqNLQfCnncsANzHsYoE bYj2nEUML2P13b9q+AAvpCBpAJ4cZp81e9n1y/vbSXHE4385cgkKueItzikQIDAQAB", 2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDltVl1k15pjRzuZfMc3B69inxwm2bZeZ 2O8/zFO+NluHnBm3GJ3fzdOoFGJd+M16I8p7zxxQyHeDMfWYASyCeB8XnUEDKjqNLQfCnncsANzHsYoE bYj2nEUML2P13b9q+AAvpCBpAJ4cZp81e9n1y/vbSXHE4385cgkKueItzikQIDAQAB",
3 "manifest_version": 2, 3 "manifest_version": 2,
4 "name": "ChromeVox", 4 "name": "ChromeVox",
5 "version": "1.0", 5 "version": "1.0",
6 "description": "ChromeVox - Giving Voice to Chrome.", 6 "description": "ChromeVox - Giving Voice to Chrome.",
7 "background": { 7 "background": {
8 "page": "chromevox/background/background.html" 8 "page": "chromevox/background/background.html"
9 }, 9 },
10 "permissions": [ 10 "permissions": [
11 "bookmarks", 11 "bookmarks",
12 "tabs", 12 "tabs",
13 "experimental", 13 "experimental",
14 "history", 14 "history",
15 "tts", 15 "tts",
16 "systemPrivate", 16 "systemPrivate",
17 "brailleDisplayPrivate", 17 "brailleDisplayPrivate",
18 "commandLinePrivate",
18 "<all_urls>" 19 "<all_urls>"
19 ], 20 ],
20 "content_scripts": [ 21 "content_scripts": [
21 { 22 {
22 "matches": [ "<all_urls>" ], 23 "matches": [ "<all_urls>" ],
23 "all_frames": true, 24 "all_frames": true,
24 "js": [ 25 "js": [
25 "chromeVoxChromePageScript.js" 26 "chromeVoxChromePageScript.js"
26 ] 27 ]
27 } 28 }
28 ], 29 ],
29 "web_accessible_resources": [ 30 "web_accessible_resources": [
30 "chromevox/injected/api.js", 31 "chromevox/injected/api.js",
31 "chromevox/injected/api_util.js", 32 "chromevox/injected/api_util.js",
32 "chromevox/injected/mathjax.js", 33 "chromevox/injected/mathjax.js",
33 "chromevox/injected/mathjax_external_util.js" 34 "chromevox/injected/mathjax_external_util.js"
34 ], 35 ],
35 "default_locale": "en" 36 "default_locale": "en"
36 } 37 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698