-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
42 lines (38 loc) · 1020 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "__MSG_appName__",
"version": "2.2.3",
"default_locale": "uk",
"author": "Kraigo",
"manifest_version": 3,
"background": {
"service_worker": "scripts/background.js"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"description": "__MSG_appDesc__",
"icons": {
"16": "images/icon-16.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"action": {
"default_icon": "images/icon-16.png",
"default_title": "__MSG_appTitle__",
"default_popup": "popup.html"
},
"permissions": [
"notifications",
"storage",
"contextMenus"
],
"host_permissions": [
"https://api.myshows.me/",
"https://media.myshows.me/*",
"https://myshows.me/"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
}
}