-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest_v3_firefox.json
More file actions
50 lines (50 loc) · 1.51 KB
/
Copy pathmanifest_v3_firefox.json
File metadata and controls
50 lines (50 loc) · 1.51 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
41
42
43
44
45
46
47
48
49
50
{
"developer": {
"name": "Jan Riechers",
"url": "https://www.dwrox.net"
},
"action": {
"default_title": "webViper - vipe the web",
"default_popup": "addon-srcs/webviper-addon-ui.opener.html",
"default_icon": {
"48": "addon-srcs/webviper-icon-48x48.png",
"64": "addon-srcs/webviper-icon-64x64.png",
"96": "addon-srcs/webviper-icon-96x96.png",
"128": "addon-srcs/webviper-icon-128x128.png"
}
},
"description": "vipe the web using the viper",
"icons": {
"48": "addon-srcs/webviper-icon-48x48.png",
"64": "addon-srcs/webviper-icon-64x64.png",
"96": "addon-srcs/webviper-icon-96x96.png",
"128": "addon-srcs/webviper-icon-128x128.png"
},
"homepage_url": "https://github.com/jrie/webViper",
"manifest_version": 3,
"name": "webViper",
"version": "1.0.1",
"permissions": ["activeTab", "storage", "unlimitedStorage"],
"host_permissions": ["<all_urls>"],
"background": {
"scripts": ["/addon-srcs/webViper-addon.js"]
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["/addon-srcs/webViper-addon.js"],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": ["/addon-srcs/*"],
"matches": []
}
],
"browser_specific_settings": {
"gecko": {
"id": "webviper@dwrox.net"
}
}
}