DCRefresher Reborn

DCRefresher Reborn

디시인사이드 개선 확장 프로그램

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "디시인사이드 개선 확장 프로그램",
  "version": "3.11.3",
  "name": "DCRefresher Reborn",
  "manifest_version": 3,
  "permissions": [
    "activeTab",
    "storage",
    "unlimitedStorage",
    "contextMenus"
  ],
  "host_permissions": [
    "https://dcrefresher.green1052.com/*",
    "https://*.dcinside.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "128": "assets/icons/logo/[email protected]",
      "180": "assets/icons/logo/[email protected]",
      "1024": "assets/icons/logo/Icon.png"
    },
    "default_popup": "views/index.html"
  },
  "icons": {
    "120": "assets/icons/logo/[email protected]",
    "180": "assets/icons/logo/[email protected]",
    "1024": "assets/icons/logo/Icon.png"
  },
  "options_page": "views/index.html",
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "popup/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "js": [
        "refresher.bundle.js"
      ],
      "css": [
        "refresher.bundle.css"
      ],
      "matches": [
        "https://*.dcinside.com/*"
      ],
      "exclude_matches": [
        "https://wiki.dcinside.com/*",
        "https://event.dcinside.com/*",
        "https://mall.dcinside.com/*",
        "https://h5.dcinside.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "commands": {
    "refreshLists": {
      "suggested_key": {
        "default": "Alt+R"
      },
      "description": "글 목록 새로고침: 새로고침"
    },
    "refreshPause": {
      "suggested_key": {
        "default": "Alt+S"
      },
      "description": "글 목록 새로고침: 일시 비활성화"
    },
    "stealthPause": {
      "suggested_key": {
        "default": "Alt+P"
      },
      "description": "스텔스 모드: 일시 비활성화"
    }
  }
}