-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifestFirefox.json
39 lines (39 loc) · 971 Bytes
/
manifestFirefox.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
{
"manifest_version": 3,
"name": "Site Password",
"short_name": "Site Password for Firefox",
"description": "Don't remember your passwords. Don't store them. Calculate them!",
"version": "3.0.11",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"background": {
"page": "bg.html"
},
"action": {
"default_icon": "images/ssplogo.png",
"default_popup": "ssp.html"
},
"content_scripts": [
{
"matches": ["https://*/*", "http://*/*"],
"run_at": "document_idle",
"js": [
"src/findpw.js"
],
"all_frames": true
}
],
"icons": {
"128": "images/icon128.png"
},
"permissions": [
"activeTab",
"bookmarks",
"browsingData",
"storage",
"tabs"
]
}