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

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

Issue 2769743005: Fix High Contrast extension (Closed)
Patch Set: Created 3 years, 9 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 | « ui/accessibility/extensions/highcontrast/highcontrast.js ('k') | 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_HIGHCONTRAST_APPNAME__", 2 "name": "__MSG_HIGHCONTRAST_APPNAME__",
3 "version": "0.8.0", 3 "version": "0.9.3",
4 "description": "__MSG_HIGHCONTRAST_APPDESC__", 4 "description": "__MSG_HIGHCONTRAST_APPDESC__",
5 "manifest_version": 2, 5 "manifest_version": 2,
6 "permissions": [ 6 "permissions": [
7 "<all_urls>", 7 "<all_urls>",
8 "tabs" 8 "tabs"
9 ], 9 ],
10 "background": { 10 "background": {
11 "scripts": [ 11 "scripts": [
12 "common.js", 12 "common.js",
13 "background.js" 13 "background.js"
14 ] 14 ]
15 }, 15 },
16 "browser_action": { 16 "browser_action": {
17 "default_icon": "highcontrast-19.png", 17 "default_icon": "highcontrast-19.png",
18 "default_title": "__MSG_HIGHCONTRAST_APPNAME__", 18 "default_title": "__MSG_HIGHCONTRAST_APPNAME__",
19 "default_popup": "popup.html" 19 "default_popup": "popup.html"
20 }, 20 },
21 "content_scripts": [ 21 "content_scripts": [
22 { 22 {
23 "run_at": "document_start", 23 "run_at": "document_start",
24 "matches": [ 24 "matches": [
25 "<all_urls>" 25 "<all_urls>"
26 ], 26 ],
27 "all_frames": true, 27 "all_frames": true,
28 "css": [
29 "highcontrast.css"
30 ],
31 "js": [ 28 "js": [
32 "highcontrast.js" 29 "highcontrast.js"
33 ] 30 ]
34 } 31 }
35 ], 32 ],
36 "icons": { 33 "icons": {
37 "16": "highcontrast-16.png", 34 "16": "highcontrast-16.png",
38 "48": "highcontrast-48.png", 35 "48": "highcontrast-48.png",
39 "128": "highcontrast-128.png" 36 "128": "highcontrast-128.png"
40 }, 37 },
41 "default_locale": "en" 38 "default_locale": "en"
42 } 39 }
OLDNEW
« no previous file with comments | « ui/accessibility/extensions/highcontrast/highcontrast.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698