Revert "Fix broken channel icon in chrome://help on CrOS" and try again
[chromium-blink-merge.git] / ui / accessibility / extensions / colorenhancer / manifest.json
blobffa85d5709a732d092da85a7978d3e052e589441
2   "name": "__MSG_COLOR_ENHANCER_APPNAME__",
3   "version": "1.12.4",
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/storage.js",
19       "src/background.js"
20     ]
21   },
22   "browser_action": {
23     "default_icon": {
24       "19": "res/cvd-19.png",
25       "38": "res/cvd-38.png"
26     },
27     "default_title": "__MSG_COLOR_ENHANCER_APPNAME__",
28     "default_popup": "src/popup.html"
29   },
30   "default_locale": "en",
31   "content_scripts": [
32     {
33       "run_at": "document_start",
34       "matches": [
35         "<all_urls>"
36       ],
37       "css": [
38         "res/cvd.css"
39       ],
40       "js": [
41         "src/common.js",
42         "src/cvd.js"
43       ]
44     }
45   ]