-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
43 lines (43 loc) · 1.15 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
43
{
"name": "Leeting",
"description": "A extension to find Pepcoding and Interviewbit problems on OG Leetcode",
"version": "1.0",
"manifest_version": 3,
"icons": {
"16": "/icons/16px.png",
"32": "/icons/32px.png",
"128": "/icons/128px.png"
},
"action": {
"default_title": "Leeting",
"default_icon": {
"16": "/icons/16px.png",
"32": "/icons/32px.png",
"128": "/icons/128px.png"
},
"default_popup": "popup.html"
},
"host_permissions": ["https://www.interviewbit.com/*","https://www.pepcoding.com/resources/*"],
"content_scripts": [
{
"matches": ["https://www.interviewbit.com/*"],
"css": ["src/inject.css"],
"js": ["js/jquery-3.6.0.min.js","js/background.js"]
},
{
"matches": ["https://www.pepcoding.com/resources/*"],
"css": ["src/inject.css"],
"js": ["js/jquery-3.6.0.min.js","js/background.js"]
}
],
"web_accessible_resources": [
{
"resources": [ "icons/*", "data/*" ],
"matches": [ "https://www.interviewbit.com/*" ]
},
{
"resources": [ "icons/*", "data/*"],
"matches": [ "https://www.pepcoding.com/*" ]
}
]
}