-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
32 lines (32 loc) · 790 Bytes
/
manifest.json
File metadata and controls
32 lines (32 loc) · 790 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
{
"name": "LeetComplexity",
"description": "A Chrome extension that analyzes TC ans SC of leetcode problems.",
"version": "1.0",
"manifest_version": 3,
"action": {
"default_popup": "index.html",
"default_icon": {
"16": "curve.png",
"32": "curve.png",
"48": "curve.png",
"128": "curve.png"
}
},
"permissions": ["activeTab", "scripting", "storage"],
"host_permissions": ["https://leetcode.com/problems/*"],
"content_scripts": [
{
"matches": ["https://leetcode.com/problems/*"],
"js": ["content.js"]
}
],
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": ["curve.png", "popup.js", "resources/tags.json"],
"matches": ["<all_urls>"]
}
]
}