English Korean Dictionary (영어사전)

English Korean Dictionary (영어사전)

간단히 클릭(Alt+Click)하여 영어단어를 찾을 수 있습니다.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "English Korean Dictionary (영어사전)",
  "version": "1.1.4",
  "description": "간단히 클릭(Alt+Click)하여 영어단어를 찾을 수 있습니다.",
  "icons": {
    "32": "icons/icon.png",
    "64": "icons/[email protected]",
    "128": "icons/[email protected]"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "config.js",
        "handler.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "dict.html"
      ]
    }
  ],
  "action": {
    "browser_style": true,
    "default_icon": "icons/[email protected]",
    "default_title": "English Korean Dictionary (영어사전)",
    "default_area": "navbar"
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "commands": {
    "toggle-mode": {
      "suggested_key": {
        "default": "Ctrl+Shift+V"
      },
      "description": "모드를 전환합니다"
    }
  },
  "permissions": [
    "storage",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://en.dict.naver.com/*",
    "*://dic.naver.com/*"
  ]
}