네이버 영어사전

네이버 영어사전

모르는 영어단어를 드래그하면 한글로 보여주는 확장 프로그램입니다.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "네이버 영어사전",
  "description": "모르는 영어단어를 드래그하면 한글로 보여주는 확장 프로그램입니다.",
  "version": "1.2.1",
  "icons": {
    "32": "./images/icon32.png",
    "48": "./images/icon48.png",
    "128": "./images/icon128.png"
  },
  "action": {
    "default_popup": "./popup/popup.html"
  },
  "background": {
    "service_worker": "./scripts/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./scripts/content.js"
      ],
      "css": [
        "./scripts/content.css"
      ]
    }
  ],
  "host_permissions": [
    "https://dict.naver.com/*"
  ]
}