-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
41 lines (41 loc) · 1.05 KB
/
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
38
39
40
41
{
"manifest_version": 2,
"name": "Chrome Overflow",
"version": "1.1",
"description": "Helping developers with their bugs with the power of inline StackOverflow results.",
"browser_action": {
"default_icon": "resources/icons/ChromeOverflowLarge.png"
},
"icons": {
"16": "resources/icons/ChromeOverflow16.png",
"48": "resources/icons/ChromeOverflow48.png",
"128": "resources/icons/ChromeOverflow128.png"
},
"devtools_page": "devtools.html",
"minimum_chrome_version": "10.0",
"content_scripts" : [
{
"matches": ["<all_urls>"],
"run_at": "document_start",
"js": ["scripts/topframe.js"]
},
{
"matches": ["<all_urls>"],
"run_at": "document_start",
"all_frames": true,
"js": ["libraries/jquery-3.2.0.min.js", "libraries/showdown.min.js", "scripts/main.js"]
}
],
"background": {
"scripts": ["background.js"]
},
"web_accessible_resources": [
"scripts/panel.js"
],
"permissions": [
"<all_urls>",
"webRequest",
"tabs"
],
"options_page": "panel.html"
}