-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
54 lines (54 loc) · 1.53 KB
/
Copy pathmanifest.json
File metadata and controls
54 lines (54 loc) · 1.53 KB
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
44
45
46
47
48
49
50
51
52
53
54
{
"manifest_version": 3,
"name": "Orthex: LeetCode AI Code Review & Big-O Checker",
"version": "1.1.0",
"update_url": "https://raw.githubusercontent.com/imstillashish/orthex/main/updates.xml",
"description": "Free, native AI-powered algorithmic profiling and complexity analysis for LeetCode — no subscription required.",
"author": "Orthex",
"icons": {
"16": "assets/icon-16.png",
"48": "assets/icon-48.png",
"128": "assets/icon-128.png"
},
"action": {
"default_popup": "popup/popup.html",
"default_icon": {
"16": "assets/icon-16.png",
"48": "assets/icon-48.png",
"128": "assets/icon-128.png"
},
"default_title": "Orthex"
},
"background": {
"service_worker": "background/service-worker.js"
},
"content_scripts": [
{
"matches": ["https://leetcode.com/*", "https://leetcode.cn/*"],
"js": ["lib/marked.min.js", "lib/mermaid.min.js", "scripts/extractor.js", "scripts/content.js"],
"css": ["styles/main.css", "styles/panel.css"],
"run_at": "document_idle"
}
],
"permissions": [
"storage",
"unlimitedStorage",
"activeTab",
"scripting",
"tabs",
"alarms"
],
"host_permissions": [
"https://leetcode.com/*",
"https://leetcode.cn/*",
"https://api.groq.com/*",
"https://console.groq.com/*",
"https://api.github.com/*"
],
"web_accessible_resources": [
{
"resources": ["assets/*", "lib/*", "scripts/page-injector.js"],
"matches": ["https://leetcode.com/*", "https://leetcode.cn/*"]
}
]
}