forked from Mr-DJ/biopass-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
43 lines (38 loc) · 931 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
{
"manifest_version": 3,
"name": "Biopass",
"version": "1.0",
"description": "The browser extension for the Biopass password manager.",
"permissions": [
"activeTab",
"contextMenus",
"clipboardWrite",
"nativeMessaging",
"notifications",
"storage",
"tabs",
"webNavigation",
"webRequest",
"declarativeNetRequest"
],
"host_permissions": [
"https://*/*",
"http://*/*",
"https://api.github.com/"
],
"content_scripts":[
{
"matches":[
"<all_urls>"
],
"js": ["socketioclient.js","content_scripts.js","biopass.js"]
}
],
"background": {
"service_workers": ["background.js"]
},
"action":{
"default_icon": "img/boo.png",
"default_popup":"poopup.html"
}
}