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

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

Issue 984833004: Add color enhancer as a chromium accessibility extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update to 1.1.2 Created 5 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
OLDNEW
(Empty)
1 {
2 "name": "__MSG_COLOR_ENHANCER_APPNAME__",
3 "version": "1.1.2",
4 "description": "__MSG_COLOR_ENHANCER_APPDESC__",
5 "manifest_version": 2,
6 "icons": {
7 "16": "res/cvd-16.png",
8 "48": "res/cvd-48.png",
9 "128": "res/cvd-128.png"
10 },
11 "permissions": [
12 "<all_urls>",
13 "tabs"
14 ],
15 "background": {
16 "scripts": [
17 "src/common.js",
18 "src/background.js"
19 ]
20 },
21 "browser_action": {
22 "default_icon": {
23 "19": "res/cvd-19.png",
24 "38": "res/cvd-38.png"
25 },
26 "default_title": "__MSG_COLOR_ENHANCER_APPNAME__",
27 "default_popup": "src/popup.html"
28 },
29 "content_scripts": [
30 {
31 "run_at": "document_start",
32 "matches": [
33 "<all_urls>"
34 ],
35 "css": [
36 "res/cvd.css"
37 ],
38 "js": [
39 "src/cvd.js"
40 ]
41 }
42 ]
43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698