Sleazy Fork is available in English.

Tumblr: Unfiltered

A simple CSS tweak to remove the mature warning filter overlays on flagged tumbler images and videos.

  1. // ==UserScript==
  2. // @name Tumblr: Unfiltered
  3. // @icon https://primary.jwwb.nl/public/g/i/o/temp-ckosctcwkptnpwfunkxo/l3y0wp/image-17.png?enable-io=true&enable=downscale&width=16
  4. // @namespace MaddHub
  5. // @match https://*.tumblr.com/*
  6. // @grant GM_addStyle
  7. // @license MIT
  8. // @version 1.4.6
  9. // @author maddjester
  10. // @description A simple CSS tweak to remove the mature warning filter overlays on flagged tumbler images and videos.
  11. // @supportURL https://discord.com/servers/maddhub-official-906957649956991036
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict'
  16. GM_addStyle('div[data-testid="community-label-cover"] { display: none !important; }')
  17. })()