-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
38 lines (38 loc) · 955 Bytes
/
manifest.json
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
{
"action": {
"default_popup": "popup/popup.html",
"default_icon": "popup/GalacTex.png"
},
"content_scripts": [{
"js": ["scripts/jquery.js", "scripts/content.js"],
"matches": ["https://*.overleaf.com/project/*"]
}],
"description": "LLM-based tools for Overleaf",
"icons": {
"16": "popup/GalacTex_16.png",
"48": "popup/GalacTex_48.png",
"128": "popup/GalacTex_128.png"
},
"commands": {
"AutoComplete": {
"suggested_key": {
"default": "Alt+C"
},
"description": "Complete text"
},
"AutoCompleteSelected": {
"suggested_key": {
"default": "Alt+Shift+C"
},
"description": "Complete selected text"
}
},
"background": {
"service_worker": "scripts/service-worker.js"
},
"permissions": ["storage", "tabs"],
"manifest_version": 3,
"name": "GalacTex",
"homepage_url": "https://github.com/WissamAntoun/GalacticTeX",
"version": "0.1.1"
}