Spot Translator

Spot Translator

Just click and get the translation right below.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "0.2.3",
  "manifest_version": 3,
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "permissions": [
    "storage"
  ],
  "action": {
    "default_icon": "images/icon.png",
    "default_popup": "options.html",
    "default_title": "Spot Translator"
  },
  "icons": {
    "48": "images/icon.png"
  },
  "background": {
    "service_worker": "background/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script/external/jquery-3.7.1.min.js",
        "content-script/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/translator_icons/*",
        "images/icon.png"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": false
    }
  ],
  "options_ui": {
    "page": "options.html"
  }
}