-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmanifest.json
More file actions
47 lines (47 loc) · 1.1 KB
/
manifest.json
File metadata and controls
47 lines (47 loc) · 1.1 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
{
"manifest_version": 3,
"name": "Dev Dashboard",
"version": "2.0",
"description": "A personal dashboard with developer stats, tools, and customizable themes",
"icons": {
"16": "logo.png",
"48": "logo.png",
"128": "logo.png"
},
"chrome_url_overrides": {
"newtab": "index.html"
},
"permissions": [
"storage",
"alarms"
],
"web_accessible_resources": [
{
"resources": [
"src/js/instant-load.js",
"libs/*.js",
"libs/excalidraw-assets/*.js",
"libs/excalidraw-assets/*.woff2"
],
"matches": ["<all_urls>"]
}
],
"optional_permissions": [
"system.cpu",
"system.memory",
"tabs",
"management"
],
"host_permissions": [
"https://api.github.com/*",
"https://codeforces.com/api/*",
"https://leetcode.com/*",
"https://leetcodestatsapi.azurewebsites.net/*",
"https://leetcode-stats-api.herokuapp.com/*",
"https://cdn.jsdelivr.net/*",
"https://raw.githubusercontent.com/*",
"https://unpkg.com/*",
"https://api.open-meteo.com/*",
"https://geocoding-api.open-meteo.com/*"
]
}