【Serv00】S14赛季注册填表脚本,针对在线代理支持croxyproxy

注册Serv00太难受了 一直节点,复制粘贴信息都给我贴傻了,于是找AI撸了个自动填表的工具,自己修改需要填表的 姓、名、用户名、邮箱

// ==UserScript==
// @name         serv00_autoform
// @namespace    serv00_autoform
// @version      0.1
// @description  serv00_autoform
// @match        https://www.serv00.com/offer/create_new_account
// @match        https://*/offer/create_new_account*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // 等待页面加载完成后执行
    window.addEventListener('load', function() {
        // 填充 First Name 字段
        var firstNameField = document.getElementById('id_first_name');
        if (firstNameField) {
            firstNameField.value = ''; // 修改为你想填入的名字
        }

        // 填充 Last Name 字段
        var lastNameField = document.getElementById('id_last_name');
        if (lastNameField) {
            lastNameField.value = ''; // 修改为你想填入的姓氏
        }

        // 填充 Username 字段
        var usernameField = document.getElementById('id_username');
        if (usernameField) {
            usernameField.value = ''; // 修改为你想填入的用户名
        }

        // 填充 Email 字段
        var emailField = document.getElementById('id_email');
        if (emailField) {
            emailField.value = ''; // 修改为你想填入的邮箱地址
        }

        // 填充 Question 字段
        var questionField = document.getElementById('id_question');
        if (questionField) {
            questionField.value = '0';
        }

        // 勾选 TOS 复选框
        var tosCheckbox = document.getElementById('id_tos');
        if (tosCheckbox && !tosCheckbox.checked) {
            tosCheckbox.checked = true;
        }
    });
})();
18 个赞

感谢大佬分享

哈哈,我还以为是注册机呢

1 个赞

换节点和验证码识别这个不好实现,要不然确实可以整

1 个赞

我有点没懂哈, 注册失败就刷新一次页面? 直接填新的验证码不就好了吗…为什么需要重复的复制粘贴?

注册失败 不得更换节点 啥的
或者使用Online Proxy更换节点要重新打开地址
那要刷新页面

完全不需要啊

edge啥的好像都会自动保存上次填的啊

节点不行也会导致注册不上

注册serv00基本上是挂在线代理,他代理的链接不是原来的,没有用啊,希望改一下

我意思是, 完全不需要刷新页面

你自己把生效地址改一下就行了 或者你把你用的在线代理地址贴出来

在线代理就要 你楼上就是

ok

他每开一个ip都会换,网址也是

那这种没办法哈

你把脚本里的
// @match https://www.serv00.com/offer/create_new_account
改成
// @match https://*/offer/create_new_account*

我这脚本就是给这种用的啊

2 个赞

https://51.158.204.66/offer/create_new_account?__cpo=aHR0cHM6Ly93d3cuc2VydjAwLmNvbQ
https://51.159.194.223/offer/create_new_account?__cpo=aHR0cHM6Ly93d3cuc2VydjAwLmNvbQ
每次都会

帖子已经更新,把脚本换一下就行,我测试是OK的

能写个一键部署work,page的脚本吗? 每次都是重复性动作