Intento Translator

Intento Translator

Translate web page from one language to another using the best-of-breed Machine Translation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Intento Translator",
  "short_name": "Intento Translator",
  "description": "Translate web page from one language to another using the best-of-breed Machine Translation.",
  "author": "Intento, Inc.",
  "manifest_version": 3,
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "background",
    "unlimitedStorage",
    "storage",
    "contextMenus",
    "notifications",
    "scripting"
  ],
  "host_permissions": [
    "https://api.inten.to/"
  ],
  "action": {
    "default_title": "Intento Translator",
    "default_popup": "popup.html",
    "default_icon": "intento-128.png"
  },
  "icons": {
    "128": "./intento-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "intento-48.png"
      ],
      "matches": [],
      "extension_ids": []
    }
  ],
  "content_security_policy": {
    "object-src": "self"
  },
  "commands": {
    "translate": {
      "suggested_key": {
        "default": "Ctrl+M"
      },
      "description": "Translate"
    },
    "translate_back": {
      "suggested_key": {
        "default": "Shift+Alt+M"
      },
      "description": "Translate back"
    },
    "show_original": {
      "suggested_key": {
        "default": "Alt+M"
      },
      "description": "Show original"
    },
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+K"
      }
    }
  },
  "version": "1.4.4"
}