Sleazy Fork is available in English.

Erome Image remover

remove images from erome

  1. // ==UserScript==
  2. // @name Erome Image remover
  3. // @namespace https://www.erome.com/
  4. // @version 1.0
  5. // @description remove images from erome
  6. // @match https://www.erome.com/*
  7. // @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
  8. // @grant none
  9. // @license WTFPL
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. if(window.location.pathname.startsWith('/a/')){
  15. document.querySelectorAll('.media-group:not(:has(.video))').forEach(element => {
  16. element.style.display = 'none';
  17. });
  18. }
  19. document.querySelectorAll('.album:not(:has(.album-videos))').forEach(element => {
  20. element.style.display = 'none';
  21. });
  22. document.querySelectorAll('.album-title').forEach(element => {
  23. element.style.maxHeight = 'none';
  24. });
  25. })();