Quick Translate

Quick Translate

Translate words or phrases effortlessly with Google Translator by right-clicking. Enjoy seamless online translation

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "js/background.js"
  },
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_name__",
  "action": {
    "default_icon": "images/128.png",
    "default_title": "Translator",
    "default_popup": "popup.html"
  },
  "options_page": "settings.html",
  "permissions": [
    "webRequest",
    "contextMenus",
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/translate.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "short_name": "Quick Translator",
  "version": "1.0.3",
  "web_accessible_resources": [
    {
      "resources": [
        "js/*",
        "images/*",
        "css/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}