Greasy Fork is available in English.

洛谷自动签到

只要登陆过洛谷,下一次打开chrome即可自动签到(仅支持最新版chrome:登陆过洛谷重启浏览器可以保持登陆状态的)

// ==UserScript==
// @name         洛谷自动签到
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  只要登陆过洛谷,下一次打开chrome即可自动签到(仅支持最新版chrome:登陆过洛谷重启浏览器可以保持登陆状态的)
// @author       spicy_chicken(bossbaby)
// @match        *://*
// @match        *://www.luogu.org/*
// @match        *://www.luogu.com.cn/*
// @grant        GM_xmlhttpRequest
// ==/UserScript==
GM_xmlhttpRequest({
  method: "GET",
  url: "https://www.luogu.com.cn/index/ajax_punch",
  onload: function(response) {
      console.log(JSON.parse(response["response"])["message"]);
  }
});