네이버 카페 애드온

네이버 카페 애드온

다크모드, 유저 프로필 카드 등 각종 편의기능 제공

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "네이버 카페 애드온",
  "version": "1.3.2",
  "description": "다크모드, 유저 프로필 카드 등 각종 편의기능 제공",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://cafe.naver.com/*",
    "http://cafe.naver.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://cafe.naver.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "common.js",
        "darkmode.js",
        "resolve-url.js"
      ],
      "css": [
        "deepdarknaver.css",
        "deepdark1080_cafe-1593151221000-219709.css"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://cafe.naver.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "jquery3.3.1.min.js",
        "common.js",
        "cafeApi.js",
        "content_script.js"
      ],
      "css": [
        "bestArticle.css",
        "profile.css"
      ],
      "all_frames": true
    }
  ],
  "action": {
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "manifest_version": 3
}