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

Side by Side Diff: ui/accessibility/extensions/colorenhancer/manifest.json

Issue 2796363002: Accessibility: Fix color enhancer manifest (Closed)
Patch Set: Created 3 years, 8 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 "name": "__MSG_COLOR_ENHANCER_APPNAME__", 2 "name": "__MSG_COLOR_ENHANCER_APPNAME__",
3 "version": "1.13.1", 3 "version": "1.13.2",
4 "description": "__MSG_COLOR_ENHANCER_APPDESC__", 4 "description": "__MSG_COLOR_ENHANCER_APPDESC__",
5 "manifest_version": 2, 5 "manifest_version": 2,
6 "icons": { 6 "icons": {
7 "16": "res/cvd-16.png", 7 "16": "res/cvd-16.png",
8 "48": "res/cvd-48.png", 8 "48": "res/cvd-48.png",
9 "128": "res/cvd-128.png" 9 "128": "res/cvd-128.png"
10 }, 10 },
11 "permissions": [ 11 "permissions": [
12 "<all_urls>", 12 "<all_urls>",
13 "tabs" 13 "tabs"
(...skipping 13 matching lines...) Expand all
27 "default_title": "__MSG_COLOR_ENHANCER_APPNAME__", 27 "default_title": "__MSG_COLOR_ENHANCER_APPNAME__",
28 "default_popup": "src/popup.html" 28 "default_popup": "src/popup.html"
29 }, 29 },
30 "default_locale": "en", 30 "default_locale": "en",
31 "content_scripts": [ 31 "content_scripts": [
32 { 32 {
33 "run_at": "document_start", 33 "run_at": "document_start",
34 "matches": [ 34 "matches": [
35 "<all_urls>" 35 "<all_urls>"
36 ], 36 ],
37 "css": [
38 "res/cvd.css"
39 ],
40 "js": [ 37 "js": [
41 "src/common.js", 38 "src/common.js",
42 "src/cvd.js" 39 "src/cvd.js"
43 ] 40 ]
44 } 41 }
45 ] 42 ]
46 } 43 }
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