네이버 팝업사전

네이버 팝업사전

Naver Popup Dictionary

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "네이버 팝업사전",
  "description": "Naver Popup Dictionary",
  "version": "0.0.0.1",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_icon": {
      "16": "/assets/16.png",
      "48": "/assets/48.png",
      "128": "/assets/128.png"
    }
  },
  "icons": {
    "16": "/assets/16.png",
    "48": "/assets/48.png",
    "128": "/assets/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "options_page": "options.html",
  "web_accessible_resources": [
    {
      "resources": [
        "dictionaryCard.html",
        "material.min.css",
        "material.min.js",
        "dictionaryCard.css",
        "assets/*",
        "bookmarks.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "contextMenus"
  ]
}