通用自动签到与领取

自用,rt

  1. // ==UserScript==
  2. // @name 通用自动签到与领取
  3. // @namespace snomiao@gmail.com
  4. // @version 0.1
  5. // @description 自用,rt
  6. // @author snomiao@gmail.com
  7. // @match http*://*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (() => {
  12. window.addEventListener("load", () =>
  13. [...document.querySelectorAll("a,button,div.btn")]
  14. .filter((e) => e.textContent.match(/签到|领取/))
  15. .forEach((e) => e.click())
  16. );
  17. })();

QingJ © 2025

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