您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
隐藏CC98每个帖子的获踩数量
- // ==UserScript==
- // @name Remove Down-thumb Count for CC98
- // @version 0.1.1
- // @description 隐藏CC98每个帖子的获踩数量
- // @author anonymousII, dont try to guess who i am :)
- // @license AGPL-3.0
- // @match https://www.cc98.org/*
- // @grant none
- // @run-at DOMContentLoaded
- // @namespace https://gf.qytechs.cn/users/1268364
- // ==/UserScript==
- (function() {
- 'use strict';
- setInterval(function() {
- var divs = document.querySelectorAll('div[id^="dislike"]');
- for (var i = 0; i < divs.length; i++) {
- var div = divs[i];
- if (/^dislike\d+$/.test(div.id)) {
- var children = div.childNodes;
- for (var j = 0; j < children.length; j++) {
- var child = children[j];
- if (child.tagName === 'SPAN' && child.className === 'commentProp') {
- child.textContent = '0';
- break;
- }
- }
- }
- }
- }, 500);
- })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址