-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
42 lines (42 loc) · 1.12 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
{
"name": "LeetCode Session Tracker",
"description": "See the current LeetCode session, no matter which page of LeetCode you are on",
"version": "1.0",
"manifest_version": 3,
"background": {
"service_worker": "service-worker.js"
},
"content_scripts": [
{
"matches": ["*://leetcode.com/*"],
"js": [
"src/js/jquery.min.js",
"src/js/leetCodeApi.js",
"src/js/submit-prevention.js"
]
}
],
"web_accessible_resources": [
{
"resources": ["src/js/*"],
"matches": ["<all_urls>"]
}
],
"permissions": ["storage", "activeTab", "scripting", "tabs", "alarms"],
"host_permissions": ["*://leetcode.com/*"],
"action": {
"default_popup": "src/html/popup.html",
"default_icon": {
"16": "src/images/get_started16.png",
"32": "src/images/get_started32.png",
"48": "src/images/get_started48.png",
"128": "src/images/get_started128.png"
}
},
"icons": {
"16": "src/images/get_started16.png",
"32": "src/images/get_started32.png",
"48": "src/images/get_started48.png",
"128": "src/images/get_started128.png"
}
}