Initial commit
This commit is contained in:
46
manifest.json
Normal file
46
manifest.json
Normal file
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"action": {
|
||||
"default_popup": "popup/popup.html",
|
||||
"default_icon": "popup/icon.png"
|
||||
},
|
||||
"content_scripts": [
|
||||
{
|
||||
"js": ["scripts/jquery.js", "scripts/content.js"],
|
||||
"matches": ["https://*.overleaf.com/project/*"]
|
||||
}
|
||||
],
|
||||
"description": "LLM-based tools for Overleaf",
|
||||
"icons": {
|
||||
"16": "popup/icon_16.png",
|
||||
"48": "popup/icon_48.png",
|
||||
"128": "popup/icon_128.png"
|
||||
},
|
||||
"commands": {
|
||||
"Complete": {
|
||||
"suggested_key": {
|
||||
"default": "Alt+C"
|
||||
},
|
||||
"description": "Complete selected text"
|
||||
},
|
||||
"Improve": {
|
||||
"suggested_key": {
|
||||
"default": "Alt+I"
|
||||
},
|
||||
"description": "Improve selected text"
|
||||
},
|
||||
"Ask": {
|
||||
"suggested_key": {
|
||||
"default": "Alt+A"
|
||||
},
|
||||
"description": "Use the selected text to ask GPT. It adds to the beginning of the selected text: 'In Latex, '"
|
||||
}
|
||||
},
|
||||
"background": {
|
||||
"service_worker": "scripts/service-worker.js"
|
||||
},
|
||||
"permissions": ["storage", "tabs"],
|
||||
"manifest_version": 3,
|
||||
"name": "LeafLLM",
|
||||
"homepage_url": "https://github.com/achiyae/LeafLLM",
|
||||
"version": "1.0.0"
|
||||
}
|
||||
Reference in New Issue
Block a user