-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
81 lines (80 loc) · 2.51 KB
/
manifest.json
File metadata and controls
81 lines (80 loc) · 2.51 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"manifest_version": 3,
"name": "HomePage",
"short_name": "HomePage",
"version": "2025.2.20",
"version_name": "v2025.2.20",
"author": "MainRoute Core",
"description": "A HomePage for Chrome, MS Edge, Opera and Mozilla Firefox developed by MainRoute Core.",
"minimum_chrome_version": "130",
"offline_enabled": true,
"homepage_url": "https://mainroute-core.github.io/",
"icons": {
"16": "./src/assets/icons/16.png",
"32": "./src/assets/icons/32.png",
"48": "./src/assets/icons/48.png",
"128": "./src/assets/icons/128.png",
"512": "./src/assets/icons/logo.png"
},
"chrome_url_overrides": {
"newtab": "./index.html",
"homepage": "./index.html"
},
"action": {
"default_popup": "./src/pop.html",
"default_title": "StartPage",
"browser_style": true,
"default_icon": {
"16": "./src/assets/icons/16.png",
"32": "./src/assets/icons/32.png",
"48": "./src/assets/icons/48.png",
"128": "./src/assets/icons/128.png",
"512": "./src/assets/icons/logo.png"
}
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["./src/js/tweaks.js"],
"run_at": "document_start",
"all_frames": true
}
],
"background": {
"service_worker": "./src/js/ex-sw.js"
},
"permissions": [
"sidePanel",
"cookies",
"tabs",
"notifications",
"alarms",
"storage",
"history",
"unlimitedStorage",
"declarativeNetRequest",
"contextMenus",
"favicon",
"clipboardWrite",
"clipboardRead",
"activeTab",
"scripting"
],
"side_panel": {
"default_path": "./src/open.html"
},
"host_permissions": [
"<all_urls>",
"http://*/**",
"https://*/**",
"https://v6.exchangerate-api.com/*",
"https://www.google.com/s2/favicons/*",
"https://*.google.com/",
"https://*.duckduckgo.com/",
"https://*.wikipedia.org/"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; img-src 'self' data: https://www.google.com https://*.gstatic.com https://icons.duckduckgo.com https://favicon.run; connect-src 'self' https://www.google.com https://fonts.googleapis.com https://fonts.gstatic.com https://*.gstatic.com https://icons.duckduckgo.com https://favicon.run https://v6.exchangerate-api.com https://suggestqueries.google.com https://api.duckduckgo.com https://en.wikipedia.org; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com; worker-src 'self';"
},
"incognito": "spanning"
}