-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
36 lines (36 loc) · 1.03 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
{
"name": "Celebrate LeetCode",
"description": "A cool extension for celebrating LeetCode submissions and searching friends in contests easily!!",
"version": "1.1.0",
"author": "Suhaan Bhandary",
"manifest_version": 3,
"homepage_url": "https://github.com/Suhaan-Bhandary/Celebrate-LeetCode",
"icons": {
"16": "./src/assets/icons/Icon16.png",
"32": "./src/assets/icons/Icon32.png",
"192": "./src/assets/icons/Icon192.png",
"512": "./src/assets/icons/Icon512.png"
},
"action": {
"default_popup": "./src/popup/popup.html"
},
"content_scripts": [
{
"matches": ["https://leetcode.com/*"],
"js": ["./src/content-scripts/LeetCode.js"],
"run_at": "document_idle"
},
{
"matches": ["https://leetcode.com/contest/*"],
"js": ["./src/content-scripts/LeetCodeLeaderBoardHighlight.js"],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": ["*.mp3"],
"matches": ["https://leetcode.com/*"]
}
],
"permissions": ["storage"]
}