Translate To English...

Translate To English...

Adds a context menu to allow you to send the highlighted text to the Microsoft Translator API

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Translate To English...",
  "description": "Adds a context menu to allow you to send the highlighted text to the Microsoft Translator API",
  "version": "1.3",
  "manifest_version": 2,
  "permissions": [
    "contextMenus"
  ],
  "icons": {
    "16": "translate16.png",
    "48": "translate48.png",
    "128": "translate128.png"
  },
  "content_security_policy": "script-src 'self' https://api.microsofttranslator.com; object-src 'self'",
  "background": {
    "scripts": [
      "translatescript.js"
    ]
  }
}