Zaqwes Translate

Zaqwes Translate

The simplest intext translator (Google Translate). Just select peace of text and open context menu.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Zaqwes Translate",
  "description": "The simplest intext translator (Google Translate). Just select peace of text and open context menu.",
  "version": "0.3.3",
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "icon_16.png",
    "19": "icon_19.png",
    "38": "icon_38.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "http://*/*.jpg",
        "http://*/*.png"
      ],
      "js": [
        "zaqwes-translate-pageScript.js"
      ]
    }
  ],
  "manifest_version": 2
}