Rafflesia for Overleaf

Rafflesia for Overleaf

Handy tools for Overleaf

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Rafflesia for Overleaf",
  "description": "Handy tools for Overleaf",
  "version": "1.0.1",
  "manifest_version": 3,
  "permissions": [],
  "host_permissions": [
    "https://*.overleaf.com/project/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.overleaf.com/project/*"
      ],
      "run_at": "document_end",
      "js": [
        "content-script.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "webpage-script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}