// ==UserScript== // @name 冰灵ssr自动签到 // @namespace http://tampermonkey.net/ // @version 0.5 // @description 当打开百度页面的时候自动打开冰灵页面自动签到 // @author cghk002 // @match https://www.baidu.com/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant GM_setValue // @grant GM_getValue // @license GNU // @downloadURL none // ==/UserScript== (function() { 'use strict'; var cur_url = window.location.href; var btn = null; var LastSignedTime; LastSignedTime=GM_getValue("LastSignedTime", "2"); if(Date().toString().substring(8,10)!=LastSignedTime){//是否是当天没有签到 if (cur_url.indexOf("www.baidu.com/s?ie") != -1) { window.open("https://www.essr.vip/user"); } } if(cur_url.indexOf("www.essr.vip")!=-1){ btn = document.getElementById('checkin'); btn.click(); //保存签到时间 GM_setValue("LastSignedTime", Date().toString().substring(8,10)); } })();