// ==UserScript==
// @name 自动任务
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author HCLonely
// @include *://marvelousga.com/giveaway/*
// @include *://dupedornot.com/giveaway/*
// @grant GM_xmlhttpRequest
// @downloadURL none
// ==/UserScript==
(function() {
'use strict';
var t=0;
var addUrl="//store.steampowered.com/api/addtowishlist";
var removeUrl="//store.steampowered.com/api/removefromwishlist";
var url=window.location.href;
var game=url.replace("https://marvelousga.com/giveaway/","");
game=url.replace("https://dupedornot.com/giveaway/","");
var div=document.createElement("div");
div.setAttribute("id", "doTaskDiv");
div.setAttribute("style", "position:fixed;right:50px;top:10px;width:85px;height:35px");
div.innerHTML=``;
document.getElementsByTagName("body")[0].appendChild(div);
document.getElementById("doTask").onclick=function(){
var a=document.getElementsByTagName("a");
for(var i=0;i