Prevent idle pop-up on 9gag.com

Simulates scroll event to prevent idle pop-up

  1. // ==UserScript==
  2. // @name Prevent idle pop-up on 9gag.com
  3. // @description Simulates scroll event to prevent idle pop-up
  4. // @namespace pl.srsbiz
  5. // @include https://9gag.com/*
  6. // @grant none
  7. // @version 0.0.1.20180106094706
  8. // ==/UserScript==
  9.  
  10. jQuery('document').ready(function($){
  11. window.setInterval(function(){
  12. $('body').trigger(new $.Event('scroll'));
  13. }, 160000);
  14. });