C4 hide trash rooms.

Execute sluts rooms

This script should not be not be installed directly. It is a library for other scripts to include with the meta directive // @require https://update.sleazyfork.org/scripts/10978/62071/C4%20hide%20trash%20rooms.js

  1. // ==UserScript==
  2. // @name C4 hide trash rooms.
  3. // @namespace cam4.com
  4. // @description Execute sluts rooms
  5. // @include http://cam4.com/*
  6. // @include http://*.cam4.com/*
  7. // @include http://*.sex.co.uk/*
  8. //@require http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js
  9. // @version 1.3
  10. // @run-at document-start
  11. // @grant none
  12. // ==/UserScript==
  13.  
  14. function hideslut()
  15. {
  16. $('.profileBoxTitle').find('a').map(function(){
  17. if(this.text == 'evacam4luv' || this.text == 'Emannuely' || this.text == 'freeroomspace2'){
  18. $(this).parent().parent().parent().parent().hide();
  19. }
  20. }).get();
  21.  
  22. }
  23. setInterval(hideslut, 0); // interval timer every 100 = 1 sec
  24.