-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
30 lines (30 loc) · 1.03 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
{
"name": "Pangsworth Info Butler",
"version": "1.0",
"description": "Pangsworth is an open source web extension that extends the Flyff Universe game data and makes it available for viewing in the browser.",
"manifest_version": 3,
"action": {
"default_title": "Pangsworth",
"default_popup": "static/popup.html"
},
"background": {
"service_worker": "build/background.js",
"type": "module"
},
"icons": {
"16": "static/images/icon16.png",
"24": "static/images/icon24.png",
"32": "static/images/icon32.png",
"48": "static/images/icon48.png",
"128": "static/images/icon128.png"
},
"content_security_policy": {
"extension_pages": "default-src 'self'; style-src 'unsafe-inline' https://fonts.googleapis.com; connect-src https://flyff-api.sniegu.fr; font-src data: https://fonts.googleapis.com https://fonts.gstatic.com; img-src data: https://flyff-api.sniegu.fr; frame-ancestors 'none';"
},
"host_permissions": [
"https://flyff-api.sniegu.fr/*"
],
"permissions": [
"storage"
]
}