SelectiveDict   (google translate)

SelectiveDict (google translate)

A Firefox add-on which quickly translates words & phrases in pages using google translate. after installing, press <ctrl> + <shift> + <b> to enable (also disable) magic in your browser. the fastest and comfiest dictionary you have ever seen.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "SelectiveDict",
  "version": "3.2.0",
  "author": "Iraj Jelodari <[email protected]>",
  "description": "a dictionary that enables you to translate selected texts on the web pages with only one click by google translate. please see the github page to contribute",
  "homepage_url": "https://github.com/iraj-jelo/selectivedict",
  "icons": {
    "48": "icons/48.png",
    "96": "icons/96.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/styles.css"
      ],
      "js": [
        "selective_dict.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking",
    "https://translate.google.com/*"
  ],
  "developer": {
    "name": "Iraj Jelodari",
    "url": "https://github.com/iraj-jelo/"
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/16.png",
      "32": "icons/32.png"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}