-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifestv3.dev.template
46 lines (46 loc) · 1.44 KB
/
manifestv3.dev.template
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
{
"manifest_version": 3,
"name": "Gitd Download Manager - DEVELOPMENT BUILD",
"short_name": "Gitd",
"description": "THIS EXTENSION IS FOR BETA TESTING",
"version": "BUILD_NUMBER",
"homepage_url": "https://github.com/git-download-manager/gitd-extension",
"permissions": [
"webNavigation",
"tabs"
],
"host_permissions": [
"API_URL/*"
],
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"128": "icons/128.png"
},
"author": "Uretgec",
"offline_enabled": false,
"content_scripts": [
{
"matches": ["*://github.com/*", "*://gitlab.com/*", "*://bitbucket.org/*", "*://gitea.com/*", "*://gitee.com/*"],
"css": ["gitdStyles.css"],
"run_at": "document_end"
},
{
"matches": ["*://github.com/*", "*://gitlab.com/*", "*://bitbucket.org/*", "*://gitea.com/*", "*://gitee.com/*"],
"js": ["contentScript.js"],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [ "lib/alpine-scp.min.js","lib/fflate.min.js","lib/gitdmanager.js" ],
"matches": ["*://github.com/*", "*://gitlab.com/*", "*://bitbucket.org/*", "*://gitea.com/*", "*://gitee.com/*"]
}
],
"externally_connectable": {
"matches": ["API_URL/*"]
}
}