Sleazy Fork is available in English.

Camwhores.tv Private Vids

automatically open private videos in a new tab using the URL script by reddit user Bakolas

  1. // ==UserScript==
  2. // @name Camwhores.tv Private Vids
  3. // @namespace http://www.camwhores.tv/*
  4. // @version 0.1
  5. // @description automatically open private videos in a new tab using the URL script by reddit user Bakolas
  6. // @author CodingWhileNaked
  7. // @match http://www.camwhores.tv/*
  8. // @grant none
  9.  
  10. // ==/UserScript==
  11.  
  12. var baseURL = "http://cwbypass.online";
  13.  
  14. waitForKeyElements(".private", updatePrivateUrls);
  15.  
  16. function updatePrivateUrls(){
  17. $(".private").each(function(){
  18. var url = $(this).children('a').attr('href');
  19. if(url.includes(baseURL)){
  20. return true;
  21. }
  22. var urlEncode = encodeURIComponent($(this).children('a').attr('href'));
  23. $(this).children('a').attr("href",baseURL + url).attr('target','_blank');
  24. });
  25. }