forked from DicePhrase/dicephrase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
45 lines (45 loc) · 1.36 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
36
37
38
39
40
41
42
43
44
45
{
"manifest_version": 2,
"name": "DicePhrase",
"version": "2.1.1",
"description": "A tool for making strong, memorable passphrases.",
"author": "Lucas Bleackley Petter",
"homepage_url": "https://www.lucaspetter.com/software/dicephrase/",
"offline_enabled": true,
"icons": {
"1024": "img/icon-1024.png",
"512": "img/icon-512.png",
"256": "img/icon-256.png",
"128": "img/icon-128.png",
"64": "img/icon-64.png",
"32": "img/icon-32.png",
"16": "img/icon-16.png"
},
"minimum_chrome_version": "22",
"content_security_policy": "default-src 'none'; base-uri 'self'; script-src 'self'; style-src 'self'; img-src 'self'; font-src 'self'; form-action 'self'; sandbox allow-same-origin allow-scripts allow-popups allow-forms;",
"sandbox": {
"pages": [ "help.html", "doc/*" ],
"content_security_policy": "default-src 'none'; base-uri 'self'; style-src 'self'; img-src 'self'; font-src 'self'; form-action 'none'; sandbox allow-popups;"
},
"incognito": "split",
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"1024": "img/icon-1024.png",
"512": "img/icon-512.png",
"256": "img/icon-256.png",
"128": "img/icon-128.png",
"64": "img/icon-64.png",
"32": "img/icon-32.png",
"16": "img/icon-16.png"
}
},
"background": {
"page": "event-page.html",
"persistent": false
},
"permissions": [
"clipboardWrite",
"alarms"
]
}