Fix translation

Fix translation

Control Google Translate areas, customize translation or non-translation areas.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "3.0.5",
  "default_locale": "en",
  "icons": {
    "16": "assets/16.png",
    "32": "assets/32.png",
    "48": "assets/48.png",
    "128": "assets/128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "scripting",
    "fontSettings",
    "declarativeContent",
    "contextMenus"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "manifest_version": 3,
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Ctrl+Q",
        "mac": "Command+Q",
        "chromeos": "Ctrl+Q",
        "linux": "Ctrl+Q"
      }
    }
  }
}