Disables annoing window that opens after clicking anywhere on page.
// ==UserScript==
// @name nhentai pop-under remover
// @description Disables annoing window that opens after clicking anywhere on page.
// @include http://*.nhentai.net/*
// @include https://nhentai.net/*
// @version 0.0.1.20170830102918
// @namespace https://greasyfork.org/users/150965
// ==/UserScript==
(function() {
var html = document.documentElement.innerHTML;
html.replace('show_popunders: true','show_popunders: false');
document.documentElement.innerHTML = html;
})();