介绍

导航栏出现一个“自动签到”的按钮,点击即可自动领取安全盾和积分。

实现 360有钱联盟 自动签到领取积分 和 安全盾

使用

油猴脚本:https://greasyfork.org/zh-CN/scripts/388146-360%E6%9C%89%E9%92%B1%E8%81%94%E7%9B%9F%E8%87%AA%E5%8A%A8%E7%AD%BE%E5%88%B0

代码

这是JavaScript代码,小白不用看。

var auto_sign = document.createElement("li")
auto_sign.className="auto_sign"
auto_sign.innerText="自动签到"
document.getElementsByClassName("headerOptsWrap nav-left")[0].appendChild(auto_sign)
//document.getElementsByClassName("auto_sign")[0].onclick=start_sign
document.getElementsByClassName("auto_sign")[0].onclick=function(){
    window.location.href = "http://youqian.360.cn/task.html###"

}
if(window.location.href == "http://youqian.360.cn/task.html###"){
           document.getElementsByClassName("def-btn btn-orange")[0].getElementsByTagName("a")[0].click()
    console.log("安全盾领取成功")
    setTimeout(function(){
           window.location.href = "http://youqian.360.cn/score.html#score"
    } ,2000)
}
if(window.location.href == "http://youqian.360.cn/score.html#score"){
        document.getElementsByClassName("def-btn btn-orange")[0].getElementsByTagName("a")[0].click()
        console.log("积分领取成功")
}