forked from GoogleChrome/chrome-extensions-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
37 lines (37 loc) · 852 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "Constant Context",
"description" : "Highlights elements with keywords on developer.chrome",
"version": "1.0",
"page_action": {
"default_icon": {
"16": "images/cc16.png",
"32": "images/cc32.png"
},
"default_popup": "popup.html"
},
"icons": {
"16": "images/cc16.png",
"48": "images/cc48.png",
"32": "images/cc32.png",
"128": "images/cc128.png"
},
"permissions": [
"https://developer.chrome.com/*",
"storage",
"declarativeContent"
],
"manifest_version": 2,
"background": {
"scripts": ["background.js"],
"persistent": false
},
"web_accessible_resources": ["style.css"],
"content_scripts": [
{
"all_frames": true,
"js": ["content_script.js"],
"matches": ["https://developer.chrome.com/*"],
"run_at": "document_idle"
}
]
}