自动领取任务。
当前为
// ==UserScript==
// @name 自动领取任务
// @version 0.1
// @include https://www.mcbbs.net/*
// @author xmdhs
// @description 自动领取任务。
// @namespace https://greasyfork.org/users/166541
// ==/UserScript==
(function() {
var a = document.getElementsByClassName("user_info_menu_btn");
var b = a[0].childNodes[7].lastChild.href;
var c = b.indexOf('&formhash=');
var key = b.substring(c+10);
var d = document.getElementsByClassName("xs0");
d[0].innerHTML += '<img src="https://www.mcbbs.net/home.php?mod=task&do=draw&id=39&hash='+key+'">';
d[0].innerHTML += '<img src="https://www.mcbbs.net/home.php?mod=task&do=draw&id=22&hash='+key+'">';
d[0].innerHTML += '<img src="https://www.mcbbs.net/home.php?mod=task&do=draw&id=40&hash='+key+'">';
d[0].innerHTML += '<img src="https://www.mcbbs.net/home.php?mod=task&do=apply&id=39&hash='+key+'">';
d[0].innerHTML += '<img src="https://www.mcbbs.net/home.php?mod=task&do=apply&id=39&hash='+key+'">';
d[0].innerHTML += '<img src="https://www.mcbbs.net/home.php?mod=task&do=apply&id=40&hash='+key+'">';
}
)();