Từ điển tiếng Nhật JP

Từ điển tiếng Nhật JP

Tra từ, phân tích câu, dịch Nhật Việt, Việt Nhật với Từ điển JP

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "3.2.6",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "vi",
  "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": "Từ điển tiếng Nhật JP",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "popup.html"
  }
}