Translate Spanish to English

Translate Spanish to English

Translate spanish to english and other languages with this Chrome extension. Ideal for fast translate english to spanish needs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "manifest_version": 3,
  "version": "0.72",
  "icons": {
    "16": "to_16.png",
    "48": "to_48.png",
    "128": "to_128.png"
  },
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "page": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "contentscript.js"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "19": "to_19.png",
      "38": "to_38.png"
    }
  },
  "commands": {
    "copy-translation-to-clipboard": {
      "description": "Copy translation to clipboard"
    }
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "popup.js",
        "tat_popup.js"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}