47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
{
|
|
"action": {
|
|
"default_popup": "popup/popup.html",
|
|
"default_icon": "popup/LeafLLM.png"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"js": ["scripts/jquery.js", "scripts/content.js"],
|
|
"matches": ["https://*.overleaf.com/project/*", "https://*.mildstone.org/project/*"]
|
|
}
|
|
],
|
|
"description": "LLM-based tools for Overleaf",
|
|
"icons": {
|
|
"16": "popup/LeafLLM_16.png",
|
|
"48": "popup/LeafLLM_48.png",
|
|
"128": "popup/LeafLLM_128.png"
|
|
},
|
|
"commands": {
|
|
"Complete": {
|
|
"suggested_key": {
|
|
"default": "Ctrl + Shift + C"
|
|
},
|
|
"description": "Completa il testo selezionato"
|
|
},
|
|
"Improve": {
|
|
"suggested_key": {
|
|
"default": "Ctrl + Shift + I"
|
|
},
|
|
"description": "Migliora il testo selezionato"
|
|
},
|
|
"Ask": {
|
|
"suggested_key": {
|
|
"default": "Ctrl + Shift + A"
|
|
},
|
|
"description": "Chiedi a Chat-GPT attraverso il testo selezionato"
|
|
}
|
|
},
|
|
"background": {
|
|
"service_worker": "scripts/service-worker.js"
|
|
},
|
|
"permissions": ["storage", "tabs"],
|
|
"manifest_version": 3,
|
|
"name": "LeafLLM",
|
|
"homepage_url": "https://github.com/achiyae/LeafLLM",
|
|
"version": "1.4.1"
|
|
}
|