-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest_v3_chrome.json
More file actions
41 lines (41 loc) · 1.31 KB
/
Copy pathmanifest_v3_chrome.json
File metadata and controls
41 lines (41 loc) · 1.31 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
{
"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": {
"service_worker": "/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": []
}
]
}