SkyDictionary - 멀티 네이버 사전

SkyDictionary - 멀티 네이버 사전

편리하고 사용성 좋은 영어사전을 포함한 언어별 사전을 제공 합니다.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SkyDictionary - 멀티 네이버 사전",
  "description": "편리하고 사용성 좋은 영어사전을 포함한 언어별 사전을 제공 합니다.",
  "version": "3.1.0",
  "manifest_version": 3,
  "permissions": [
    "contextMenus",
    "storage",
    "webRequest",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "https://*.naver.com/*"
  ],
  "background": {
    "service_worker": "backend.js"
  },
  "icons": {
    "34": "icon32.png",
    "128": "icon128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "content-script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "popup.html",
        "popup.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}