Created
August 11, 2025 13:55
-
-
Save Gtd232/c0691fac80484fd35f526204384c8873 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name CCW Auto‑Expand | |
| // @namespace ccw-auto-expand-857857857 | |
| // @version 0.1 | |
| // @description 自动展开评论 | |
| // @author 巴巴托斯 | |
| // @match https://*.ccw.site/* | |
| // @run-at document-end | |
| // @grant none | |
| // ==/UserScript== | |
| (function () { | |
| 'use strict'; | |
| setInterval(() => { | |
| for ( const a of document.querySelectorAll('.c-open-reply > span')) { | |
| a.click(); | |
| } | |
| }, 100); | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment