Sleazy Fork is available in English.

semprot unhide image

unhide image on forum semprot while using adblock

  1. // ==UserScript==
  2. // @name semprot unhide image
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description unhide image on forum semprot while using adblock
  6. // @author Rizki Aprita
  7. // @include /https?:\/\/93\.115\.24\.211\/.*/
  8. // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. let bbimgs = document.querySelectorAll('.bbImage')
  16. bbimgs.forEach((bbimg)=>{
  17. bbimg.classList.remove("adVertical");
  18. })
  19. // Your code here...
  20. })();