Revert of Add Masonry to key_silk_cases. (patchset #3 id:40001 of https://codereview...
[chromium-blink-merge.git] / ui / accessibility / extensions / highcontrast / manifest.json
blob3e918506cc18349542bbf424c9b2fb162a70d96a
2   "name": "__MSG_HIGHCONTRAST_APPNAME__",
3   "version": "0.7",
4   "description": "__MSG_HIGHCONTRAST_APPDESC__",
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": "__MSG_HIGHCONTRAST_APPNAME__",
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   "default_locale": "en"