Greasy Fork

Greasy Fork is available in English.

好书友

好书友自动领取在线奖励

当前为 2021-09-01 提交的版本,查看 最新版本

// ==UserScript==
// @name         好书友
// @namespace    http://greasyfork.icu/zh-CN/users/821
// @version      0.1
// @description  好书友自动领取在线奖励
// @author       ashcarbide
// @match        https://www.93hsy.com/
// @icon
// @grant        none
// ==/UserScript==
function autoclick(){
    if(document.getElementById('online_link').href=="https://www.93hsy.com/plugin.php?id=gonline:index&action=award&formhash=951b0a83"){
        document.getElementById('online_link').click();
        setTimeout(function(){location.reload();}, 5000);
        return true;}
    location.reload();
}
setTimeout(function(){autoclick();},20000);