Greasy Fork

通用自动签到与领取

自用,rt

目前为 2022-01-28 提交的版本。查看 最新版本

// ==UserScript==
// @name         通用自动签到与领取
// @namespace    [email protected]
// @version      0.1
// @description  自用,rt
// @author       [email protected]
// @match        http*://*
// @grant        none
// ==/UserScript==

(() => {
    window.addEventListener('load', () =>
        [...document.querySelectorAll('a,button,div.btn')]
            .filter((e) => e.textContent.match(/签到|领取/))
            .forEach((e) => e.click())
    );
})();