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

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

Issue 593293002: Initial checkin of accessibility extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix license issues Created 6 years, 2 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
OLDNEW
(Empty)
1 {
2 "name": "High Contrast",
3 "version": "0.6",
4 "description": "Change or invert the color scheme to make webpages easier to r ead.",
5 "manifest_version": 2,
6 "permissions": [
7 "<all_urls>",
8 "tabs"
9 ],
10 "background": {
11 "scripts": [
12 "common.js",
13 "background.js"
14 ]
15 },
16 "browser_action": {
17 "default_icon": "highcontrast-19.png",
18 "default_title": "High Contrast (Shift+F11)",
19 "default_popup": "popup.html"
20 },
21 "content_scripts": [
22 {
23 "run_at": "document_start",
24 "matches": [
25 "<all_urls>"
26 ],
27 "all_frames": true,
28 "css": [
29 "highcontrast.css"
30 ],
31 "js": [
32 "highcontrast.js"
33 ]
34 }
35 ],
36 "icons": {
37 "16": "highcontrast-16.png",
38 "48": "highcontrast-48.png",
39 "128": "highcontrast-128.png"
40 }
41 }
OLDNEW
« no previous file with comments | « ui/accessibility/extensions/highcontrast/highcontrast-48.png ('k') | ui/accessibility/extensions/highcontrast/popup.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698