Translator

Translator

Lightweight tool for translating text. Select text and press T or right-click and "Translate"

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Translator",
  "description": "Lightweight tool for translating selected text. Select text and press T or choose Translate in context menu",
  "version": "1.3",
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "options_ui": {
    "page": "options/options.html",
    "browser_style": false
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "main.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}