forked from internetarchive/wayback-machine-webextension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
executable file
·48 lines (47 loc) · 1.1 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": "Wayback Machine",
"description": "Reduce annoying 404 pages by automatically checking for an archived copy in the Wayback Machine.",
"version": "2.12",
"homepage_url": "https://archive.org/",
"icons": {
"48": "images/icon.png",
"96": "images/[email protected]"
},
"permissions": [
"notifications",
"tabs",
"activeTab",
"storage",
"webRequest",
"webRequestBlocking",
"contextMenus",
"http://*/*",
"https://*/*",
"*://*/*",
"<all_urls>"
],
"background": {
"scripts": ["scripts/background.js"],
"persistent": true
},
"web_accessible_resources": [
"images/insetIcon.svg",
"images/close.svg",
"images/logo.gif",
"images/logo-animate.svg",
"scripts/client.js",
"scripts/RTcontent.js",
"scripts/sequences.js",
"scripts/d3.js",
"scripts/radial-tree.umd.js",
"css/RTstyle.css",
"css/sequences.css",
"css/googlestyle.css",
"css/radial-tree.css"
],
"browser_action": {
"default_icon": "images/icon.png",
"default_popup": "index.html"
}
}