Anycursor - Writing Assistant

Anycursor - Writing Assistant

Anycursor is a writing assistant that lets you search and add content as you type, anywhere on the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Anycursor - Writing Assistant",
  "short_name": "Anycursor",
  "description": "Anycursor is a writing assistant that lets you search and add content as you type, anywhere on the web.",
  "version": "0.0.41",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "bookmarks",
    "history"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "./favicons/16.png",
      "24": "./favicons/24.png",
      "32": "./favicons/32.png"
    }
  },
  "icons": {
    "16": "./favicons/16.png",
    "48": "./favicons/48.png",
    "128": "./favicons/128.png",
    "256": "./favicons/256.png"
  },
  "host_permissions": [
    "*://localhost:4000/*",
    "*://anycursor-staging.fly.dev/*",
    "*://anycursor.com/*"
  ],
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "fonts/Inter.ttf"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "icons/*.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "logos/*.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}