KBB Anti-Adblock Killer

Forces KBB to respect your right not to view content you don't want.

  1. // ==UserScript==
  2. // @name KBB Anti-Adblock Killer
  3. // @namespace jeremy@timenotlinear.com
  4. // @description Forces KBB to respect your right not to view content you don't want.
  5. // @include https://www.kbb.com/*
  6. // @include https://kbb.com/*
  7. // @version 1.0
  8. // @grant none
  9. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
  10. // ==/UserScript==
  11.  
  12. jQuery(document).ready(function()
  13. {
  14. kill_kill_kill();
  15. });
  16.  
  17. function kill_kill_kill()
  18. {
  19. if (jQuery('html').hasClass('whitelist-overlay-on'))
  20. {
  21. jQuery('html').removeClass('whitelist-overlay-on');
  22. jQuery('#WhitelistOverlayModalBackground').remove();
  23. }
  24. else
  25. {
  26. setTimeout(kill_kill_kill,500);
  27. }
  28. }