-
Notifications
You must be signed in to change notification settings - Fork 5
/
manifest.json
50 lines (43 loc) · 1.28 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
49
50
{
"manifest_version": 2,
"name": "Archive URL",
"version": "1.9",
"author": "Jonathan McCann",
"homepage_url": "https://github.com/jonathanmccann/archive-url-firefox-addon",
"description": "This Firefox addon will add a new item to the context menu and a button the toolbar menu, allowing you to archive the current webpage to the Wayback Machine, archive.today, and Ghost Archive. When right clicking on a link or an image, you can choose to archive that URL instead of the current URL.",
"icons": {
"16": "icons/archive-icon-dark-16.png",
"32": "icons/archive-icon-dark-32.png",
"64": "icons/archive-icon-dark-64.png",
"128": "icons/archive-icon-dark-128.png"
},
"options_ui": {
"page": "options/options.html"
},
"permissions": [
"contextMenus",
"storage",
"tabs"
],
"browser_action": {
"browser_style": false,
"default_icon": {
"16": "icons/archive-icon-dark-16.png",
"32": "icons/archive-icon-dark-32.png"
},
"default_title": "Archive to Wayback Machine",
"theme_icons": [{
"light": "icons/archive-icon-light-16.png",
"dark": "icons/archive-icon-dark-16.png",
"size": 16
},
{
"light": "icons/archive-icon-light-32.png",
"dark": "icons/archive-icon-dark-32.png",
"size": 32
}]
},
"background": {
"scripts": ["archive.js"]
}
}