Select to Translate - any language translator

Select to Translate - any language translator

Effortlessly translate text selections to your preferred language with a simple click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Select to Translate - any language translator",
  "version": "1.2",
  "description": "Effortlessly translate text selections to your preferred language with a simple click.",
  "manifest_version": 3,
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "48": "images/icon.png",
      "96": "images/icon.png"
    }
  },
  "icons": {
    "48": "images/icon.png",
    "96": "images/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "node_modules/@webcomponents/custom-elements/custom-elements.min.js",
        "main.js",
        "content.js"
      ]
    }
  ]
}