Greasy Fork

OrlyGift - Voter

Automatically vote for you

目前为 2017-04-12 提交的版本。查看 最新版本

// ==UserScript==
// @name         OrlyGift - Voter
// @icon         https://www.orlygift.com/favicon.ico
// @namespace    Royalgamer06
// @author       Royalgamer06
// @version      1.0.0
// @description  Automatically vote for you
// @include      https://www.orlygift.com/voting
// @grant        none
// @run-at       document-idle
// @require      https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js
// ==/UserScript==

var rate = 1; //1 = good, -1 = bad

this.$ = this.jQuery = jQuery.noConflict(true);
function vote() {
    $.get("/voting", function(data) {
        if ($("#voting-claim-button", data).length === 0) {
            var appid = $("input[name=steam_id]", data).val();
            var token = $("input[name=_token]", data).val();
            $.post("/voting/rate", { _token: token, rate: 1, steam_id: appid }, function() {
                vote();
            });
        } else {
            location.href = "https://www.orlygift.com/voting";
        }
    });
}
vote();