Skip to content

Instantly share code, notes, and snippets.

@Gtd232
Created August 11, 2025 13:55
Show Gist options
  • Select an option

  • Save Gtd232/c0691fac80484fd35f526204384c8873 to your computer and use it in GitHub Desktop.

Select an option

Save Gtd232/c0691fac80484fd35f526204384c8873 to your computer and use it in GitHub Desktop.
// ==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