Sarcasm Immunity for Reddit

Removes comments with /s on Reddit, only works on new design.

// ==UserScript==
// @name        Sarcasm Immunity for Reddit
// @namespace   Violentmonkey Scripts
// @match       *://*.reddit.com/*
// @grant       none
// @version     1.0
// @author      Brahma Sharma
// @description Removes comments with /s on Reddit, only works on new design.
// @license     MIT
// ==/UserScript==

setInterval(() => {
  [...document.querySelectorAll("[data-testid='comment']")].filter(e => e.innerHTML.includes("/s")).forEach(e => e.textContent = "[redacted]");
}, 1000);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址