-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
38 lines (30 loc) · 889 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
38
{
"manifest_version" : 2,
"name" : "WH+",
"short_name" : "WH+",
"description" : "Notifikationer för webhallen.com",
"author" : "Jasdoge",
"version" : "2.1.0",
"icons":{
"28" : "media/icon.png",
"144" : "media/logo-144.png"
},
"content_scripts" : [{
"matches" : [
"https://www.webhallen.com/*",
"https://webhallen.com/*"
],
"js" : ["lib/jquery.min.js", "injected/content.js"]
}],
"browser_action": {
"default_icon": "media/icon_loading.png",
"default_title": "WH+",
"default_popup": "popup/popup.html"
},
"options_page" : "options/options.html",
"permissions":["storage", "notifications", "tabs", "<all_urls>"],
"background" : {
"page" : "background/index.html"
},
"web_accessible_resources" : ["injected/main.css"]
}