Overleaf Copilot

Overleaf Copilot

Seamlessly incorporate ChatGPT to power and accelerate academic writing in Overleaf.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Overleaf Copilot",
  "description": "Seamlessly incorporate ChatGPT to power and accelerate academic writing in Overleaf.",
  "version": "0.5.19",
  "manifest_version": 3,
  "author": "Overleaf Copilot Organization",
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "https://www.promptgenius.site/oc/*",
    "https://*.xcopilot.top/*",
    "https://*.overleafcopilot.com/*"
  ],
  "homepage_url": "https://overleafcopilot.com/",
  "action": {
    "default_popup": "src/scripts/popup/popup.html",
    "default_title": "Overleaf Copilot Here",
    "default_icon": {
      "16": "/icons/16.png",
      "32": "/icons/32.png",
      "48": "/icons/48.png",
      "128": "/icons/128.png"
    }
  },
  "background": {
    "service_worker": "src/scripts/worker/worker.js"
  },
  "content_scripts": [
    {
      "world": "MAIN",
      "matches": [
        "https://*.overleaf.com/project/*"
      ],
      "include_globs": [
        "https://*.overleaf.com/project/?*"
      ],
      "js": [
        "src/scripts/inject/inject.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.overleaf.com/project/*"
      ],
      "include_globs": [
        "https://*.overleaf.com/project/?*"
      ],
      "js": [
        "src/scripts/content/content.js"
      ],
      "run_at": "document_end",
      "css": [
        "style.css"
      ]
    },
    {
      "world": "MAIN",
      "matches": [
        "https://*.overleafcopilot.com/*"
      ],
      "js": [
        "src/scripts/assist/inject.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*.overleafcopilot.com/*"
      ],
      "js": [
        "src/scripts/assist/assist.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.json",
        "*.webp",
        "*.xml",
        "*.png",
        "*.md"
      ],
      "matches": [
        "https://*.overleaf.com/*"
      ]
    }
  ],
  "icons": {
    "16": "/icons/16.png",
    "32": "/icons/32.png",
    "48": "/icons/48.png",
    "128": "/icons/128.png",
    "192": "/icons/192.png",
    "512": "/icons/512.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}