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

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

Issue 1108843003: Remove setup.css from content script. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Increment version number. Created 5 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.12.2", 3 "version": "1.12.3",
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 14 matching lines...) Expand all
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": [ 37 "css": [
38 "res/cvd.css", 38 "res/cvd.css"
39 "res/setup.css"
40 ], 39 ],
41 "js": [ 40 "js": [
42 "src/common.js", 41 "src/common.js",
43 "src/cvd.js" 42 "src/cvd.js"
44 ] 43 ]
45 } 44 }
46 ] 45 ]
47 } 46 }
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