Kiosk 자동 국룰

Kiosk 자동 국룰 입력

目前為 2024-05-25 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name Kiosk 자동 국룰
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Kiosk 자동 국룰 입력
  6. // @author 김머시기
  7. // @match https://kiosk.ac/c/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=kioskloud.xyz
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12. 'use strict';
  13.  
  14. function pw() {
  15. document.querySelector('.input.shadow-xl.flex-grow').value = "smpeople";
  16. document.querySelector('.btn.btn-ghost.w-full.mt-2.rounded-md').click();
  17. }
  18.  
  19. function downbtn() {
  20. let downButton = document.querySelector('.p-2 li:last-child button');
  21. downButton.click();
  22. }
  23.  
  24. async function auto() {
  25. await pw();
  26. await setTimeout(downbtn,2000);
  27. }
  28.  
  29. window.addEventListener('load', () => setTimeout(auto, 700));

QingJ © 2025

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