-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
59 lines (59 loc) · 1.29 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"manifest_version": 3,
"name": "My Prayer",
"version": "1.0.3",
"default_locale": "en",
"description": "__MSG_extensionDescription__",
"action": {
"default_popup": "popup/popup.html"
},
"icons": {
"16": "imgs/icon-16.png",
"32": "imgs/icon-32.png",
"64": "imgs/icon-64.png",
"128": "imgs/icon-128.png",
"256": "imgs/icon-256.png"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"permissions": [
"storage",
"geolocation",
"alarms",
"notifications"
],
"content_scripts": [
{
"js": [
"popup/content.js"
],
"matches": [
"<all_urls>"
]
}
],
"web_accessible_resources": [
{
"resources": [
"imgs/*"
],
"matches": [
"<all_urls>"
]
}
],
"commands": {
"open_popup": {
"suggested_key": {
"default": "Ctrl+Shift+Y"
},
"description": "__MSG_commandDescription__"
}
},
"host_permissions": [
"https://api.aladhan.com/*",
"https://api.bigdatacloud.net/*"
]
}