Sleazy Fork is available in English.

SexVZ free images

re-enable image search and download

  1. // ==UserScript==
  2. // @name SexVZ free images
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description re-enable image search and download
  6. // @author fuckingboring
  7. // @match https://sexvz.net/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. let images = document.getElementsByTagName('img');
  15. for (let i=0; i<images.length; i++) {
  16. images[i].oncontextmenu = undefined;
  17. images[i].style.pointerEvents = '';
  18. }
  19. })();