LeafLLM

LeafLLM

LLM-based tools for Overleaf

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "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/*"
      ]
    }
  ],
  "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": "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.4.0"
}