// ==UserScript== // @name Prevent idle pop-up on 9gag.com // @description Simulates scroll event to prevent idle pop-up // @namespace pl.srsbiz // @include https://9gag.com/* // @grant none // @version 0.0.1.20180106094706 // @downloadURL https://update.greasyfork.icu/scripts/21122/Prevent%20idle%20pop-up%20on%209gagcom.user.js // @updateURL https://update.greasyfork.icu/scripts/21122/Prevent%20idle%20pop-up%20on%209gagcom.meta.js // ==/UserScript== jQuery('document').ready(function($){ window.setInterval(function(){ $('body').trigger(new $.Event('scroll')); }, 160000); });