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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/chromevox2/manifest.json
diff --git a/chrome/browser/resources/chromeos/chromevox/manifest.json b/chrome/browser/resources/chromeos/chromevox2/manifest.json
similarity index 67%
copy from chrome/browser/resources/chromeos/chromevox/manifest.json
copy to chrome/browser/resources/chromeos/chromevox2/manifest.json
index 97d68b9f0b9daee53ca71a615c3ed94a2854bfe2..259514eb386b7c2d0b2afee49b7db6380b624230 100644
--- a/chrome/browser/resources/chromeos/chromevox/manifest.json
+++ b/chrome/browser/resources/chromeos/chromevox2/manifest.json
@@ -1,14 +1,22 @@
{
- // NOTE: Keep two json files in this directory in sync. The only difference
- // should be incognito:split in Guest mode version.
"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDltVl1k15pjRzuZfMc3B69inxwm2bZeZ2O8/zFO+NluHnBm3GJ3fzdOoFGJd+M16I8p7zxxQyHeDMfWYASyCeB8XnUEDKjqNLQfCnncsANzHsYoEbYj2nEUML2P13b9q+AAvpCBpAJ4cZp81e9n1y/vbSXHE4385cgkKueItzikQIDAQAB",
"manifest_version": 2,
"name": "ChromeVox",
"version": "1.0",
"description": "ChromeVox - Giving Voice to Chrome.",
"background": {
- "page": "chromevox/background/background.html"
+ "page": "cvox2/background/background.html"
},
+ "content_scripts": [
+ {
+ "matches": [ "<all_urls>" ],
+ "exclude_globs": [ "chrome-extension://mndnfokpggljbaajbnioimlmbfngpief/chromevox/background/background.html" ],
+ "all_frames": true,
+ "js": [
+ "cvox2/injected/injected.js"
+ ]
+ }
+ ],
"permissions": [
"accessibilityPrivate",
"automation",
@@ -22,21 +30,9 @@
"commandLinePrivate",
"<all_urls>"
],
- "content_scripts": [
- {
- "matches": [ "<all_urls>" ],
- "exclude_globs": [ "chrome-extension://mndnfokpggljbaajbnioimlmbfngpief/chromevox/background/background.html" ],
- "all_frames": true,
- "js": [
- "chromeVoxChromePageScript.js"
- ]
- }
- ],
- "web_accessible_resources": [
- "chromevox/injected/api.js",
- "chromevox/injected/api_util.js",
- "chromevox/injected/mathjax.js",
- "chromevox/injected/mathjax_external_util.js"
- ],
+ "automation": {
+ "desktop": true,
+ "interact": true
+ },
"default_locale": "en"
}
« 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