Jdict Dictionary

Jdict Dictionary

Jdict dictionary extension help you read japanese text more simply

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Jdict Dictionary",
  "manifest_version": 2,
  "version": "1.3.3",
  "options_page": "options.html",
  "permissions": [
    "chrome://favicon/*",
    "topSites",
    "unlimitedStorage",
    "tabs",
    "storage",
    "https://clients5.google.com/*",
    "https://www.gstatic.com/*",
    "https://jdict.net/*",
    "https://google.com/*"
  ],
  "background": {
    "scripts": [
      "./common/config.js",
      "./common/store.js",
      "./lib/jquery.js",
      "./lib/popper.js",
      "./lib/bootstrap.js",
      "background.js",
      "./lib/bootstrap.js",
      "lib/shortcut.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "static/icons/[email protected]",
    "default_title": "Jdict Dictionary"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "css": [
        "./popups/translate.css",
        "./popups/search.css"
      ],
      "js": [
        "./common/config.js",
        "./common/store.js",
        "./popups/translate.js",
        "./popups/search.js"
      ],
      "run_at": "document_idle",
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://jdict.net https://ssl.google-analytics.com https://clients5.google.com https://www.gstatic.com https://apis.google.com/ https://www.google-analytics.com; object-src 'self'; ",
  "description": "Jdict dictionary extension help you read japanese text more simply",
  "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": {},
  "web_accessible_resources": [
    "static/*"
  ]
}