YaTranslate

YaTranslate

Quick translator based on Yandex API. Just double click on word you need to translate!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YaTranslate",
  "version": "1.0.0",
  "description": "Quick translator based on Yandex API. Just double click on word you need to translate!",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "jquery.min.js",
        "content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true
    }
  ],
  "author": "http://mkuzmich.com",
  "icons": {
    "16": "img/16.png",
    "64": "img/64.png",
    "128": "img/128.png"
  },
  "manifest_version": 2,
  "options_page": "options.html",
  "permissions": [
    "storage",
    "tabs",
    "contextMenus"
  ]
}