Linkcrypt.ws Remove Anti Adblock

Removes anti adblock overlay and unhides container buttons

  1. // ==UserScript==
  2. // @name Linkcrypt.ws Remove Anti Adblock
  3. // @namespace https://greasyfork.org/users/5174-jesuis-parapluie
  4. //
  5. // @description Removes anti adblock overlay and unhides container buttons
  6. //
  7. // @include http://linkcrypt.ws/dir/*
  8. //
  9. // @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
  10. //
  11. // @grant none
  12. //
  13. // @version 0.0.5
  14. // ==/UserScript==
  15.  
  16.  
  17. (function ($) {
  18. "use strict";
  19. /*jslint browser:true */
  20. /*global $, jQuery */
  21.  
  22. var apply = function () {
  23. $('#ad_cont').css('display', '');
  24. $('#ad_cont').attr('id', '');
  25. $('#container_check').hide();
  26. $('#kbf1').hide();
  27. $('#container').show();
  28. };
  29.  
  30.  
  31. $(function () {
  32. $(document).bind('DOMNodeInserted', apply);
  33. apply();
  34. });
  35.  
  36. }(jQuery));