您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically vote for you
// ==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://gf.qytechs.cn/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(); }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址