Choose All Languages

Choose All Languages

Enhances your browsing experience by offering text translation by simply right-clicking anywhere within the browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Choose All Languages",
  "version": "1.2.0",
  "description": "Enhances your browsing experience by offering text translation by simply right-clicking anywhere within the browser.",
  "permissions": [
    "activeTab",
    "storage",
    "contextMenus",
    "webRequest",
    "webNavigation",
    "host_permissions"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "48": "icons/48.png",
      "128": "icons/128.png"
    }
  },
  "background": {
    "service_worker": "sw.js"
  },
  "icons": {
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "performance.js"
      ]
    }
  ],
  "options_ui": {
    "page": "/options/options.html",
    "open_in_tab": true
  },
  "homepage_url": "https://choosealllanguages.com/",
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}