-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
38 lines (38 loc) · 946 Bytes
/
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
{
"name": "HDrezka Grabber",
"description": "__MSG_manifest_description__",
"version": "0.3",
"version_name": "0.3 beta",
"default_locale": "en",
"manifest_version": 3,
"icons": {
"48": "src/img/icons/48.png",
"32": "src/img/icons/32.png",
"16": "src/img/icons/16.png"
},
"action": {
"default_popup": "src/html/popup.html"
},
"background": {
"service_worker": "src/js/background.js"
},
"permissions": [
"scripting",
"storage"
],
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": [
"src/js/injection_scripts/*"
],
"matches": [
"<all_urls>"
]
}
],
"author": "[email protected]",
"homepage_url": "https://github.com/kristal374/HDrezka-Grabber"
}