学习是一种乐趣~
分享是一种美德~

斯巴达(SpartanHost)抢购油猴脚本

最近斯巴达(SpartanHost)VPS比较火,一机难求,刚刚看到大佬分享的js脚本用于抢购,效果还不错,推荐使用chrome浏览器,安装Tampermonkey扩展使用。

2021年2月更新:SpartanHost 加入了机器人验证,导致脚本运行一段时间就会触发验证。

脚本:

// ==UserScript==
// @name         自动抢购买vps
// @namespace    https://www.haiyun.me
// @version      0.1
// @description  buy spartanhost vps
// @author       www.haiyun.me
// @match        https://billing.spartanhost.net/cart.php?a=*
// @grant        none
// ==/UserScript==

(function() {
    var forcedReload = false;
    var time = 500; 
    var url = document.URL;
    var hostname = "www.haiyun.me";
    var customfield = "website";
    if (document.title == '502 Bad Gateway') {
        setTimeout(function() {
            window.location.reload(forcedReload);
        }, time);
    } else if (document.title == '504 Gateway Time-out') {
        setTimeout(function() {
            window.location.reload(forcedReload);
        }, time);
    } else if (document.title == '503 Service Temporarily Unavailable') {
        setTimeout(function() {
            window.location.reload(forcedReload);
        }, time);
    } else if (document.title == '500 Internal Server Error') {
        setTimeout(function() {
            window.location.reload(forcedReload);
        }, time);
    } else if (document.getElementsByTagName('h1')[0].innerHTML == '无法访问此网站') {
        setTimeout(function() {
            window.location.reload(forcedReload);
        }, time);
    }

    if (url.indexOf("https://billing.spartanhost.net/cart.php?a=add") != -1) {
        var str = document.getElementById("order-boxes").innerHTML;
        if (str.indexOf("Out of Stock") != -1) {
            setTimeout(function() {
                window.location.reload(forcedReload);
            }, time);
        }
    } else if (url.indexOf("https://billing.spartanhost.net/cart.php?a=confproduct") != -1) {
        document.getElementById("inputHostname").value = hostname;
        var element = document.querySelector('input[name^="customfield"]');
        element.value = customfield;
        document.getElementById("btnCompleteProductConfig").click();
    } else if (url.indexOf("https://billing.spartanhost.net/cart.php?a=view") != -1) {
        document.getElementById("checkout").click();
    } else if (url.indexOf("https://billing.spartanhost.net/cart.php?a=checkout") != -1) {
        document.getElementById("iCheck-accepttos").click();
        document.getElementById("btnCompleteOrder").click();
    }
})();

使用方法:

安装Tampermonkey扩展。直接添加脚本使用,推荐使用chrome浏览器

 

添加完脚本直接登录账号,然后到想抢购的机器页面即可,如果页面语言不是英文,右上角把语言改成英文,会自动刷新页面,不需任何更改,可直接使用。

斯巴达官网:https://spartanhost.net

8折循环优惠码:kvm20

当然,如果抢不到的话,也可以考虑TMT,线路跟 斯巴达 一样。唯一就是比斯巴达稍微贵点,但是使用优惠码后,两家价格基本差别就不大了。所以还是值得推荐一下的,至少不用去抢购。

TMT官网:https://tmthosting.net

40%循环优惠码:VPS20OFF

 

版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
网站名称:CNBoy 四海部落
文章名称:《斯巴达(SpartanHost)抢购油猴脚本》
文章链接:https://cnboy.org/979

本站资源仅供个人学习交流,不允许用于商业或违反国家法律法规之用途,否则法律问题自行承担。如有转载需注明文章来源。