Remove Gelbooru Nag

Removes Gelbooru AD-Blocking nag

  1. // ==UserScript==
  2. // @name Remove Gelbooru Nag
  3. // @namespace namespace
  4. // @include https://gelbooru.com/*
  5. // @version 3.1
  6. // @grant none
  7. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
  8. // @description Removes Gelbooru AD-Blocking nag
  9. // ==/UserScript==
  10. $('#searchTags > center').remove();
  11. $('body > div.padding15 > div.contain-push > div:nth-child(3)').remove();
  12. $('body > div.padding15 > div.contain-push > div:nth-child(2)').remove();
  13. $('body > div.contain-push > div:nth-child(43) > a > img').remove();