Dictionariez: one to rule them all

Dictionariez: one to rule them all

Dictionariez(Dictionaries): This extension help you reading articles, looking up words of any language in various dictionaries, and exporting words to Anki, facilitating your language learning process.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "4.2.1",
  "manifest_version": 2,
  "name": "Dictionariez: one to rule them all",
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "contextMenus",
    "<all_urls>"
  ],
  "background": {
    "persistent": true,
    "page": "background.html"
  },
  "content_scripts": [
    {
      "js": [
        "preinject.bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    "*.js",
    "*.json",
    "*.html",
    "fonts/*"
  ],
  "browser_action": {
    "default_title": "Dictionariez: one to rule them all"
  },
  "icons": {
    "16": "images/library-16.png",
    "32": "images/library-32.png",
    "64": "images/library-64.png",
    "128": "images/library-128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}