// ==UserScript== // @name 自动任务 // @namespace http://tampermonkey.net/ // @version 0.7.2 // @description 自动完成marvelousga,dupedornot,gamecode等网站访问网页任务,自动验证所有任务 // @author HCLonely // @include *://www.grabfreegame.com/giveaway/* // @include *://gamecode.win/giveaway/* // @include *://whosgamingnow.net/giveaway/* // @include *://marvelousga.com* // @include *://dupedornot.com* // @include *://gamezito.com* // @include *://www.grabfreegame.com/login* // @include *://gamecode.win/login* // @include *://whosgamingnow.net/login* // @run-at document-end // @downloadURL none // ==/UserScript== (function() { 'use strict'; var autoRedeem=1;//1为自动激活;改为0则不自动激活 if(/You need to be logged in to perform all tasks|Please login to see the tasks/gim.test(document.getElementsByTagName("body")[0].innerText)){ window.location.href="/login"; return 0; } var url=window.location.href; var t=0; var height=/grabfreegame/gim.test(url)?66:10; var game=url.replace(/https?:\/\/(www)?(marvelousga|dupedornot|gamezito|gamecode).(com|win)\/giveaway\/|/,""); var div=document.createElement("div"); div.setAttribute("id", "doTaskDiv"); div.setAttribute("style", "position:fixed;right:80px;top:"+height+"px;width:85px;z-index: 99999999999;"); div.innerHTML=` `; var div2=document.createElement("div"); div2.setAttribute("id", "info"); div2.setAttribute("class", "card-body card"); div2.setAttribute("style", "position:fixed;right:50px;bottom:10px;max-width:600px;max-height:400px;overflow-y:auto;z-index: 99999999999;"); document.getElementsByTagName("body")[0].appendChild(div); document.getElementsByTagName("body")[0].appendChild(div2); //防止弹出新窗口 window.onload=function(){ var d=new Date(); var cookiename = "haveVisited1"; //document.cookie = "haveVisited=1; path=/"; //document.cookie = "lastVisit=" + (d.getUTCMonth()+1) +"/"+ d.getUTCDate() + "/" + d.getUTCFullYear() + "; path=/"; document.cookie = cookiename + "=1; path=/"; document.cookie = cookiename + "=" + (d.getUTCMonth()+1) +"/"+ d.getUTCDate() + "/" + d.getUTCFullYear() + "; path=/"; } //防止419 function token(){ var a=document.getElementsByTagName("a"); for(var j=0;j${msg}!`; } e===t&&(getId()); }, error:function(jqXHR, textStatus, errorThrown){ p.innerHTML+=`${textStatus}:${jqXHR.status}-${errorThrown}`; e===t&&(getId()); } }); } var task_id=[]; var api_id=[]; var btn_id=[]; var p_id=[]; //获取任务id function getId(){ var btn=document.getElementsByTagName("button"); for(var i=0;i0&&api_id.length>0&&btn_id.length>0&&p_id.length>0){ verify(0); }else if(task_id.length==0&&api_id.length==0&&btn_id.length==0&&p_id.length==0){ info("card-text monospace","color:green",`所有任务验证完成!`); getKey(); } } //验证任务 function verify(e,v=0){ if(/visit[\w\W]*?webpage/gim.test(p_id[e])&&v==1){ e++; verify(e,v); return; }else if(/visit[\w\W]*?webpage/gim.test(p_id[e])&&v!=1){ v=1; } var p=info("card-text monospace","",`验证任务${task_id[e]}:${p_id[e]}...`); if(/Join[\w\W]*?in Steam/i.test(p_id[e].innerText)){ document.getElementById(btn_id[e]).removeAttribute("disabled"); document.getElementById(btn_id[e]).click(); } if(/visit[\w\W]*?webpage/.test(p_id[e])&&v==1){ }else{ $.ajax({ type: "post", url: "/ajax/verifyTasks/"+api_id[e], datatype: "json", data:{ giveaway_slug: game, giveaway_task_id: task_id[e] }, crossDomain:true, xhrFields: { withCredentials: true }, success: function (data) { if(data.status==1){ document.getElementById(btn_id[e]).innerText="VERIFIED"; p.innerHTML+="OK!--"+data.percentageNanoBar+"%"; }else{ document.getElementById(btn_id[e]).innerText="ERROR!"; document.getElementById(btn_id[e]).style.color="red"; document.getElementById(btn_id[e]).parentNode.getElementsByTagName("a")[0].click(); var msg=data.message||"ERROR"; p.innerHTML+=`${msg}!`; } e++; if(data.percentageNanoBar==100||e>=btn_id.length){ info("card-text monospace","color:green",`所有任务验证完成!`); getKey(); }else{ verify(e,v); } }, error:function(jqXHR, textStatus, errorThrown){ document.getElementById(btn_id[e]).innerText="ERROR!"; document.getElementById(btn_id[e]).style.color="red"; document.getElementById(btn_id[e]).parentNode.getElementsByTagName("a")[0].click(); p.innerHTML+=`${textStatus}:${jqXHR.status}-${errorThrown}`; e++; if(e${data.key}`); autoRedeem==1&&(window.open("https://store.steampowered.com/account/registerkey?key="+data.key,"_blank")); }else{ var msg=data.message||"ERROR"; p.innerHTML+=`${msg}!`; } }, error:function(jqXHR, textStatus, errorThrown){ p.innerHTML+=`${textStatus}:${jqXHR.status}-${errorThrown}`; } }); } } if(/https?:\/\/(marvelousga|dupedornot|gamezito).com\/giveaway\/[\w\W]*/.test(url)){ document.getElementById("doTask").onclick=function(){ t=0; var crsf=token(); if(crsf===1){ var a=document.getElementsByTagName("a"); for(var i=0;i0&&e==="d"&&(doTask(0)); verify_btn.length>0&&e==="v"&&(verify_1(0)); } //做任务 function doTask(e){ var taskId=do_btn[e].match(/\?q\=[\d]+/)[0]; taskId=taskId.replace("?q=",""); var p=info("code","",`执行任务:${taskId}...`); $.ajax({ type: "get", url: do_btn[e], timeout:"10000", datatype: "json", crossDomain:true, xhrFields: { withCredentials: true }, complete: function (data) { p.innerHTML+="OK!"; e++; e0&&(verify_1(0))); } }); } //验证任务 function verify_1(e){ var taskId=verify_btn[e].match(/\?verify\=[\d]+/)[0]; taskId=taskId.replace("?verify=",""); var p=info("code","",`验证任务:${taskId}...`); $.ajax({ type: "get", url: verify_btn[e], timeout:"10000", datatype: "json", crossDomain:true, xhrFields: { withCredentials: true }, complete: function (data) { p.innerHTML+="OK!"; e++; e`; }else{ msg=data.message||"ERROR"; task=g_task_ok[e].getElementsByTagName("a")[0]; zz=document.createElement("div"); zz.appendChild(task); task=zz.innerHTML; p.innerHTML+=`${msg}!${task}`; } p.scrollIntoView(); e++; e0?info("card-text monospace","color:red",`有任务未完成或验证失败,请手动完成任务之后在验证!`):info("card-text monospace","color:green",`所有任务验证完成,请手动完成谷歌验证获取key!`)); } }); } } //wgn领key if(/https?:\/\/whosgamingnow.net\/giveaway\/[\w\W]*/.test(url)){ btn_class("btn btn-primary"); function wsn_enter(){ $.ajax({ type: "post", url: url, datatype: "json", data:{ submit: "Enter", }, crossDomain:true, xhrFields: { withCredentials: true }, success: function (data) { if(/

Steam key:<\/h3>

[\w\d]{5}(-[\w\W]{5}){2}<\/strong><\/p>/i.test(data)){ var key=data.match(/

Steam key:<\/h3>

[\w\d]{5}(-[\w\W]{5}){2}<\/strong><\/p>/i)[0]; key=key.replace(/(

Steam key:<\/h3>

)|(<\/strong><\/p>)/gi,""); data=data.replace(key,`${key}`); } document.write(data); }, error:function(jqXHR, textStatus, errorThrown){ alert(textStatus+":"+jqXHR.status+"-"+errorThrown); } }); } document.getElementById("doTask").onclick=function(){ wsn_enter(); }; document.getElementById("Verify").onclick=function(){ wsn_enter(); }; } //gamecode领key if(/https?:\/\/gamecode.win\/giveaway\/[\w\W]*/.test(url)){ document.getElementById("doTask").onclick=function(){ gamecode_task(); }; document.getElementById("Verify").onclick=function(){ gamecode_task(); }; function gamecode_task(){ var gamecode_btn=document.getElementsByClassName("btn btn-theme"); info("card-title","color: #f38288",`正在自动做任务,任务完成后请手动完成谷歌验证领取key!`); for(var i=0;i