Hifini Auto Click VIP Button

自动点击VIP按钮

  1. // ==UserScript==
  2. // @name Hifini Auto Click VIP Button
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description 自动点击VIP按钮
  6. // @author Jack Ou
  7. // @icon https://www.hifini.com/view/img/logo.png
  8. // @match http*://www.hifini.com/*
  9. // @match http*://*.lanzn.com/*
  10. // @grant none
  11. // @license MIT
  12. // @run-at document-idle
  13. // ==/UserScript==
  14.  
  15. (function() {
  16. 'use strict';
  17.  
  18. // 等待页面加载
  19. window.onload = function() {
  20. // 查找第一个按钮
  21. var button1 = document.getElementById('dp_code');
  22. if (button1) {
  23. // 自动点击第一个按钮
  24. button1.click();
  25. }
  26.  
  27. // 等待2秒后点击第二个按钮
  28. setTimeout(function() {
  29. var button2 = document.getElementById('lp_code');
  30. if (button2) {
  31. // 自动点击第二个按钮
  32. button2.click();
  33. }
  34. }, 2000); // 1000毫秒 = 1秒
  35. };
  36. })();

QingJ © 2025

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