-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
30 lines (30 loc) · 874 Bytes
/
manifest.json
File metadata and controls
30 lines (30 loc) · 874 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
{
"manifest_version": 3,
"name": "LearnByHover",
"version": "2.0.0",
"description": "Hold Shift + drag to ask about any code/UI - now with browser-based AI!",
"homepage_url": "https://github.com/tpC529/codelearner",
"permissions": ["activeTab", "tabs", "storage"],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
},
"web_accessible_resources": [{
"resources": ["model-worker.js", "text-worker.js"],
"matches": ["<all_urls>"]
}],
"background": {
"service_worker": "background.js"
},
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["content.js"],
"all_frames": true,
"run_at": "document_end"
}],
"options_page": "options.html",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
}