다음 팝업 사전

다음 팝업 사전

다음(Daum) 사전을 이용한 팝업 사전입니다. (Popup Dictionary using Daum Mobile dictionary.)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "다음 팝업 사전",
  "version": "1.4.10",
  "description": "다음(Daum) 사전을 이용한 팝업 사전입니다. (Popup Dictionary using Daum Mobile dictionary.)",
  "icons": {
    "16": "img/3d-dictionary16.png",
    "128": "img/3d-dictionary128.png"
  },
  "permissions": [
    "*://*/*",
    "storage"
  ],
  "browser_action": {
    "default_icon": {
      "16": "img/3d-dictionary16.png",
      "24": "img/3d-dictionary24.png",
      "32": "img/3d-dictionary32.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "*://*/*"
      ],
      "js": [
        "jquery-ui/jquery-1.12.4.js",
        "jquery-ui/jquery-ui.js",
        "contentscripts.js"
      ],
      "css": [
        "jquery-ui/jquery-ui.css",
        "css/user.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "toggle-application-enabled": {
      "suggested_key": {
        "default": "Ctrl+Shift+Z",
        "mac": "Command+Shift+Z"
      },
      "description": "Toggle Application Enabled"
    }
  },
  "web_accessible_resources": [
    "img/*.png"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true,
    "open_in_tab": true
  }
}