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);