您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hides anything related to karma on Reddit.
// ==UserScript== // @name Fuck Reddit Karma (For New Reddit) // @namespace https://gf.qytechs.cn/en/users/14470-sewil // @description Hides anything related to karma on Reddit. // @include https://*.reddit.com/* // @version 1.0.0 // @grant none // @require https://code.jquery.com/jquery-3.6.0.min.js // @require https://gitcdn.xyz/cdn/uzairfarooq/arrive/cfabddbd2633a866742e98c88ba5e4b75cb5257b/minified/arrive.min.js // @license MIT // ==/UserScript== const selectors = [ '[id^=vote-arrows-] > div', // Comment/post karma '.Rz5N3cHNgTGZsIQJqBfgk, ._2fN55zgax6VM7DyEl9pOmM', // User profile karma '._2ETuFsVzMBxiHia6HfJCTQ._3_GZIIN1xcMEC5AVuv4kfa' // User profile comment karma ].join(','); $(selectors).remove(); // Remove on page load $(document).arrive(selectors, function (element) { // Remove any elements appearing after page load $(this).remove(); });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址