-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.firefox.json
More file actions
36 lines (36 loc) · 882 Bytes
/
Copy pathmanifest.firefox.json
File metadata and controls
36 lines (36 loc) · 882 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": "Local LLM Bilingual Translator",
"description": "Personal bilingual page translator powered by LM Studio.",
"version": "0.1.0",
"browser_specific_settings": {
"gecko": {
"id": "local-llm-bilingual-translator@example.com",
"strict_min_version": "128.0"
}
},
"action": {
"default_popup": "popup.html",
"default_title": "Local Translator"
},
"background": {
"scripts": ["background.js"]
},
"host_permissions": [
"http://localhost/*",
"http://127.0.0.1/*"
],
"optional_host_permissions": [
"http://*/*",
"https://*/*"
],
"permissions": ["activeTab", "storage", "contextMenus", "scripting"],
"commands": {
"toggle-page-translation": {
"suggested_key": {
"default": "Alt+T"
},
"description": "Translate or restore the current page"
}
}
}