Quick Dictionary

Quick Dictionary

Quick Dictionary extension help you translate text more quickly, simply by a highlight or a keypress.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Quick Dictionary",
  "manifest_version": 2,
  "version": "1.3.0",
  "options_page": "options.html",
  "permissions": [
    "chrome://favicon/*",
    "storage",
    "https://clients5.google.com/*",
    "https://google.com/*"
  ],
  "background": {
    "scripts": [
      "./common/config.js",
      "./common/qd_words.js",
      "./common/store.js",
      "./common/log_event.js",
      "./lib/jquery.js",
      "./lib/popper.js",
      "./lib/bootstrap.js",
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "static/icons/[email protected]",
    "default_title": "Quick Dict Popup",
    "default_popup": "./browser_action/popup.html"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "css": [
        "./components/components.css",
        "./popups/translate.css",
        "./popups/reminder.css"
      ],
      "js": [
        "./common/config.js",
        "./common/store.js",
        "./common/log_event.js",
        "./components/components.js",
        "./popups/translate.js",
        "./popups/reminder.js"
      ],
      "run_at": "document_idle",
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com https://clients5.google.com https://www.gstatic.com https://apis.google.com/ https://*.firebaseio.com https://www.googleapis.com https://www.google-analytics.com; object-src 'self'; ",
  "description": "Quick Dictionary extension help you translate text more quickly, simply by a highlight or a keypress.",
  "icons": {
    "16": "static/icons/[email protected]",
    "32": "static/icons/[email protected]",
    "48": "static/icons/[email protected]",
    "96": "static/icons/[email protected]",
    "128": "static/icons/[email protected]",
    "512": "static/icons/[email protected]"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+D",
        "mac": "Alt+D"
      }
    }
  },
  "web_accessible_resources": [
    "static/*"
  ]
}