Prevent idle popup on 9GAG

Simulates scroll event every 2m40s to prevenet idle popup

目前为 2016-07-03 提交的版本。查看 最新版本

// ==UserScript==
// @name           Prevent idle popup on 9GAG
// @description    Simulates scroll event every 2m40s to prevenet idle popup
// @namespace      pl.srsbiz
// @include        http://9gag.com/*
// @grant none
// @version 0.0.1.20160703160930
// ==/UserScript==

jQuery('document').ready(function(){
  window.setInterval(function(){
    jQuery('body').trigger(new jQuery.Event('scroll'));
  }, 160000);
});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址