네이버 카페 새로고침

네이버 카페 새로고침

네이버 카페 사이트에서 새로고침을 개선합니다.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "네이버 카페 새로고침",
  "description": "네이버 카페 사이트에서 새로고침을 개선합니다.",
  "homepage_url": "https://github.com/getCurrentThread/Naver-Cafe-Fix-Refresh-Extension",
  "version": "0.1.1.2",
  "author": "getCurrentThread",
  "action": {
    "default_icon": "assets/thumbnail.png"
  },
  "icons": {
    "16": "assets/thumbnail.png",
    "48": "assets/thumbnail.png",
    "128": "assets/thumbnail.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "*://cafe.naver.com/*"
      ],
      "all_frames": true,
      "css": [],
      "js": [
        "lib/jquery-3.6.0.min.js",
        "lib/arrive.min.js",
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ]
}