-
Notifications
You must be signed in to change notification settings - Fork 13
/
manifest.json
48 lines (45 loc) · 1.08 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
42
43
44
45
46
47
48
{
"manifest_version": 2,
"name": "WARCreate",
"version": "0.2021.6.28",
"version_name": "0.2021.6.28 build 1307",
"description": "Create Wayback-Consumable WARC Files from Any Webpage",
"icons" : {
"16" : "icons/icon-16.png",
"48" : "icons/icon-48.png",
"128" : "icons/icon-128.png"
},
"background": {
"page":"html/background.html"
},
"homepage_url": "http://warcreate.com",
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["js/jquery-2.1.1.min.js","js/content.js"]
}
],
"page_action" :
{
"default_icon" : "icons/icon-19.png",
"default_title" : "WARCreate",
"default_popup" : "html/popup.html"
},
"permissions" : [
"webRequest",
"tabs",
"activeTab",
"storage",
"unlimitedStorage",
"http://*/*",
"http://*/",
"*://*/*",
"notifications"
],
"options_ui": {
"page": "html/options.html"
},
"short_name" : "WARCreate",
"content_security_policy": "script-src 'self'; object-src 'self'",
"minimum_chrome_version": "23.0"
}