-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
41 lines (41 loc) · 1.18 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
{
"manifest_version": 3,
"name": "Market Pulse",
"version": "1.5.0",
"description": "Real-time tracker for global market indices including SENSEX, NIFTY, Dow Jones, and more",
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"action": {
"default_popup": "popup.html"
},
"options_page": "options.html",
"background": {
"service_worker": "js/background.js",
"type": "module"
},
"permissions": [
"storage",
"windows",
"system.display"
],
"host_permissions": [
"https://*.finance.yahoo.com/*",
"https://query1.finance.yahoo.com/*",
"https://query2.finance.yahoo.com/*"
],
"web_accessible_resources": [{
"resources": [
"js/config/*",
"js/utils/*",
"js/*.js"
],
"matches": ["<all_urls>"]
}],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; connect-src 'self' https://*.finance.yahoo.com https://query1.finance.yahoo.com https://query2.finance.yahoo.com;"
}
}