Cursor Translate

Cursor Translate

Translate highlighted text using the cursor.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Cursor Translate",
  "version": "1.0",
  "description": "Translate highlighted text using the cursor.",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup/popup.html",
    "default_icon": "images/language.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/close.png",
        "images/pin.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}