nhentai pop-under remover

Disables annoing window that opens after clicking anywhere on page.

  1. // ==UserScript==
  2. // @name nhentai pop-under remover
  3. // @description Disables annoing window that opens after clicking anywhere on page.
  4. // @include http://*.nhentai.net/*
  5. // @include https://nhentai.net/*
  6. // @version 0.0.1.20170830102918
  7. // @namespace https://greasyfork.org/users/150965
  8. // ==/UserScript==
  9.  
  10. (function() {
  11. var html = document.documentElement.innerHTML;
  12. html.replace('show_popunders: true','show_popunders: false');
  13. document.documentElement.innerHTML = html;
  14. })();