Reddit NSFW Remover

Remove NSFW blur.

As of 2023-12-08. See the latest version.

// ==UserScript==
// @name     Reddit NSFW Remover
// @version  1
// @grant    none
// @include https://www.reddit.com/r/*
// @description Remove NSFW blur.
// @namespace https://greasyfork.org/users/803889
// @license MIT
// ==/UserScript==
  

function topkek(){
  Array.from(document.querySelectorAll('shreddit-blurred-container div')).forEach(button=>button.click())
	
}

setInterval(topkek, 3000)