-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
47 lines (47 loc) · 1.15 KB
/
manifest.json
File metadata and controls
47 lines (47 loc) · 1.15 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": "LeetDaily - Daily LeetCode Challenge",
"version": "2.0.0",
"description": "Daily LeetCode challenges, Blind 75/NeetCode 150/LC 75 tracking, FAANG company tags, problems explorer & streaks.",
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
},
"permissions": ["storage", "alarms", "notifications"],
"host_permissions": ["https://leetcode.com/*"],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://leetcode.com/*"],
"js": ["content.js"],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"data/leetcode-problems.json",
"data/blind75.json",
"data/neetcode150.json",
"data/leetcode75.json",
"utils/list-helpers.js",
"problems-explorer.html",
"problems-explorer.js",
"styles/output.css"
],
"matches": ["<all_urls>"]
}
]
}