-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathmanifest.json
More file actions
49 lines (49 loc) · 1.24 KB
/
manifest.json
File metadata and controls
49 lines (49 loc) · 1.24 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
{
"manifest_version": 3,
"name": "Local Browser - AI Web Agent",
"version": "0.1.0",
"description": "On-device AI web automation using WebLLM. No cloud, no API keys, fully private.",
"permissions": [
"storage",
"scripting",
"activeTab",
"tabs",
"offscreen"
],
"host_permissions": [
"<all_urls>",
"https://huggingface.co/*",
"https://cdn-lfs.huggingface.co/*",
"https://cdn-lfs-us-1.huggingface.co/*",
"https://raw.githubusercontent.com/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
},
"background": {
"service_worker": "src/background/index.ts",
"type": "module"
},
"action": {
"default_popup": "src/popup/index.html",
"default_title": "Local Browser",
"default_icon": {
"16": "public/icons/icon16.png",
"48": "public/icons/icon48.png",
"128": "public/icons/icon128.png"
}
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["src/content/index.ts"],
"run_at": "document_idle"
}
],
"icons": {
"16": "public/icons/icon16.png",
"48": "public/icons/icon48.png",
"128": "public/icons/icon128.png"
},
"minimum_chrome_version": "124"
}