Japanese Dictionary JP

Japanese Dictionary JP

Lookup vocabulary and Kanji, translate Japanese into multiple languages using JP Dictionary

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "3.2.6",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval' ;  object-src 'none'"
  },
  "permissions": [
    "storage",
    "tts",
    "tabs",
    "scripting",
    "contextMenus",
    "webNavigation"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "omnibox": {
    "keyword": "jp"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "pdfjs/web/viewer.html",
        "ocr.html",
        "opencvHandler.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "sandbox": {
    "pages": [
      "opencvHandler.html"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "contentScript.js"
      ],
      "css": [
        "bootstrapcustom.min.css"
      ],
      "run_at": "document_idle",
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Japanese Dictionary JP",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "popup.html"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}