Greasy Fork is available in English.
吾爱破解论坛自动签到脚本,很简单的一个脚本。主要就是自动签到,不用手动点击签到。
// ==UserScript==
// @name 吾爱破解论坛自动签到 - 无道
// @description 吾爱破解论坛自动签到脚本,很简单的一个脚本。主要就是自动签到,不用手动点击签到。
// @author 无道
// @namespace 52sign
// @version 1.0.2
// @date 2019.09.30
// @modified 2020.11.25
//引用
// require http://code.jquery.com/jquery-2.1.4.min.js
// @require http://cdn.staticfile.org/jquery/2.1.4/jquery.min.js
//图标
// @icon https://favicon.yandex.net/favicon/52pojie.cn
// @include http*://www.52pojie.cn/
//功能
// @grant unsafeWindow
// @grant GM_log
// @grant GM_setValue
// @grant GM_getValue
// @grant GM_info
// @encoding utf-8
// @run-at document-idle
// ==/UserScript==
(function () {
'use strict';
var $ = $ || window.$;
$.get("./home.php?mod=task&do=draw&id=2");
GM_log('sign');
})();