-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanifest.json
35 lines (35 loc) · 1.04 KB
/
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
{
"name": "Passky - Password Manager",
"description": "Simple, modern, open source and secure password manager.",
"version": "8.1.1",
"manifest_version": 3,
"author": "Rabbit Company LLC",
"homepage_url": "https://passky.org",
"permissions": ["clipboardWrite", "activeTab", "storage"],
"action": {
"default_icon": "/images/logo32.png",
"default_title": "Passky",
"default_popup": "index.html"
},
"content_scripts": [{
"matches": ["http://*/*", "https://*/*"],
"js": ["js/content-script.js"],
"run_at": "document_idle",
"all_frames": false,
"match_about_blank": false
}],
"content_security_policy": {
"extension_pages": "script-src 'self'; base-uri 'none'; object-src 'none'; form-action 'self'; frame-ancestors 'none'; worker-src 'self';"
},
"icons": {
"16": "/images/logo16.png",
"32": "/images/logo32.png",
"48": "/images/logo48.png",
"128": "/images/logo128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{c27461c5-20e7-47b4-9e82-9f48e8d5e005}"
}
}
}