-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
40 lines (39 loc) · 1.02 KB
/
manifest.json
File metadata and controls
40 lines (39 loc) · 1.02 KB
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
{
"name": "Programming.com Extension",
"version": "0.0.1",
"manifest_version": 2,
"browser_action": {
"default_icon": {
"19": "img/icon_19x19.png",
"38": "img/icon_38x38.png"
},
"default_title": "Programming.com click for settings",
"default_popup": "html/login.html"
},
"web_accessible_resources": ["lib/jquery/dist/jquery.min.js"],
"content_scripts": [
{
"matches": ["*://github.com/*"],
"js": [
"lib/jquery/dist/jquery.min.js",
"js/defaults.js",
"js/github.js"
],
"run_at": "document_end"
},
{
"matches": ["*://stackoverflow.com/*"],
"js": [
"lib/jquery/dist/jquery.min.js",
"js/defaults.js",
"js/stackoverflow.js"
],
"run_at": "document_end"
}
],
"permissions": [
"tabs",
"https://*/*",
"http://*/*"
]
}