-
Notifications
You must be signed in to change notification settings - Fork 34
/
manifest.json
44 lines (44 loc) · 913 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
39
40
41
42
43
44
{
"manifest_version": 3,
"name": "DotGit",
"version": "4.10.4",
"description": "An extension for checking if .git is exposed in visited websites",
"icons": {
"16": "icons/dotgit-16.png",
"32": "icons/dotgit-32.png",
"48": "icons/dotgit-48.png",
"96": "icons/dotgit-96.png",
"128": "icons/dotgit-128.png"
},
"permissions": [
"webRequest",
"storage",
"notifications",
"downloads"
],
"host_permissions": [
"http://*/*",
"https://*/*",
"ws://*/*",
"wss://*/*"
],
"background": {
"scripts": [
"dotgit.js"
],
"service_worker": "dotgit.js",
"type": "module"
},
"action": {
"default_title": "DotGit",
"default_popup": "popup/popup.html"
},
"options_ui": {
"page": "options/options.html"
},
"browser_specific_settings": {
"gecko": {
"id": "{84cbda23-345f-4e74-9695-9a52b9599dc0}"
}
}
}