Simple WaitForKeyElement

Library that Exports my simplified vanilla JS version of WaitForKeyElement, which is a simple async function that returns a Promise that resolves to an element by a given selector, when that element is found

目前為 2024-10-01 提交的版本,檢視 最新版本

此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.gf.qytechs.cn/scripts/511024/1457619/Simple%20WaitForKeyElement.js

  1. // ==UserScript==
  2. // @name Simple WaitForKeyElement
  3. // @license MIT
  4. // @namespace 1N07
  5. // @match *://*/*
  6. // @version 1.0
  7. // @author 1N07
  8. // @description Library that Exports my simplified vanilla JS version of WaitForKeyElement, which is a simple async function that returns a Promise that resolves to an element by a given selector, when that element is found
  9. // ==/UserScript==
  10.  
  11. async function WaitForKeyElement(selector, timeout) {
  12. return new Promise((resolve, reject) => {
  13. let el = document.querySelector(selector);
  14.  
  15. if (el) {
  16. resolve(el);
  17. return;
  18. }
  19.  
  20. new MutationObserver((mutationRecords, observer) => {
  21. el = document.querySelector(selector);
  22. if (el) {
  23. resolve(el);
  24. observer.disconnect();
  25. }
  26. }).observe(document.documentElement, { childList: true, subtree: true });
  27.  
  28. if (timeout) {
  29. setTimeout(() => {
  30. reject(null);
  31. }, timeout);
  32. }
  33. });
  34. }

QingJ © 2025

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