forked from Aryan-Sheregar/Nanas-code-review
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
36 lines (36 loc) · 853 Bytes
/
manifest.json
File metadata and controls
36 lines (36 loc) · 853 Bytes
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
{
"manifest_version": 3,
"name": "Nana's Code Review",
"version": "1.0",
"description": "Our Dear Grandma helps us crack those insaneee DSA rounds with some small amounts of motivational push",
"permissions": ["activeTab", "scripting"],
"host_permissions": ["http://localhost/*"],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://leetcode.com/*"],
"js": ["carousel_inject.js"],
"run_at": "document_idle",
"css":["styles.css"]
}
],
"web_accessible_resources": [
{
"resources": [
"image0.png",
"image1.png",
"image2.png",
"image3.png",
"image4.png",
"image5.png",
"image6.png"
],
"matches": ["<all_urls>"]
}
],
"action": {
"default_popup": "popup.html"
}
}