Dictionariez: one to rule them all

Dictionariez: one to rule them all

With this extension: 1. Double-click any word to reveal its definition in a pop-up bubble. 2. Access full word definitions using…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "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]"
    }
  }
}