[Beta] Layer Dic. (Naver Dic.)

[Beta] Layer Dic. (Naver Dic.)

alt+클릭, alt+드레그로 단어를 검색할 수 있습니다.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "[Beta] Layer Dic. (Naver Dic.)",
  "description": "alt+클릭, alt+드레그로 단어를 검색할 수 있습니다.",
  "version": "0.1.1",
  "author": "ZUFA",
  "browser_action": {
    "default_title": "dictionary",
    "default_icon": "img/icon.png",
    "default_popup": "page/popup.html"
  },
  "permissions": [
    "tabs",
    "<all_urls>"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "js/bg.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/dic.css"
      ],
      "js": [
        "js/jquery.js",
        "js/contentscript.js"
      ],
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "js/*"
  ],
  "commands": {
    "toggle-feature": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y"
      },
      "description": "Send a 'toggle-feature' event to the extension"
    },
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "MacCtrl+Shift+F"
      }
    }
  }
}