geekhub自动签到

https://geekhub.com/自动签到

目前为 2020-06-02 提交的版本。查看 最新版本

// ==UserScript==
// @name         geekhub自动签到
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  https://geekhub.com/自动签到
// @author       zz
// @match        https://geekhub.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    $.ajax({
        url: '/checkins/start',
        type: 'post',
        dataType: 'json',
        data: {

        },
        beforeSend: function () {
            console.log("自动签到中,请稍后...");
        },
        success: function (data) {
            console.log(data);
        }
    });

})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址