-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
25 lines (25 loc) · 924 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
{
"manifest_version": 3,
"name": "PWGen",
"version": "1.0",
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';",
"sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline'; child-src 'self';",
"default-src": "script-src 'self'; object-src 'self'; style-src 'self' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com;"
},
"description": "A browser extension for securely and procedurally generating passwords using SHA-256 hashing.",
"action": {
"default_popup": "index.html",
"default_icon": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
},
"permissions": ["clipboardWrite", "storage", "activeTab"],
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
}