WebTranslate

WebTranslate

WebTranslate allows you to translate your web pages in more than 100 languages and choose which translate engine you want to use between Google or Bing ! You will have an additionnal contextual menu just on your right click for more productivity !

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "2.0.5",
  "default_locale": "en",
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "icons": {
    "48": "/images/weTranslate48.png",
    "96": "/images/weTranslate96.png"
  },
  "browser_action": {
    "browser_style": false,
    "default_popup": "./data/html/popup_menu.html",
    "default_icon": {
      "16": "/images/weTranslate16.png",
      "32": "/images/weTranslate32.png"
    }
  },
  "background": {
    "scripts": [
      "./data/js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./data/js/content-script.js",
        "./data/js/injectionHelper.js",
        "./data/js/tingle.js"
      ],
      "css": [
        "./data/css/tingle.css"
      ]
    }
  ],
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "permissions": [
    "activeTab",
    "tabs",
    "contextMenus",
    "menus",
    "storage"
  ]
}