OrlyGift - Voter

Automatically vote for you

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         OrlyGift - Voter
// @icon         https://www.orlygift.com/favicon.ico
// @namespace    Royalgamer06
// @author       Royalgamer06
// @version      1.1
// @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
// @require      https://greasyfork.org/scripts/18449-recaptcha-helper/code/reCAPTCHA%20Helper.user.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";
        }
    });
}
if ($("#voting-claim-button").length === 0) {
    vote();
} else {
    $("#voting-claim-button").click();
}