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
สคริปต์นี้ไม่ควรถูกติดตั้งโดยตรง มันเป็นคลังสำหรับสคริปต์อื่น ๆ เพื่อบรรจุด้วยคำสั่งเมทา // @require https://update.greasyfork.org/scripts/511024/1460585/Simple%20WaitForKeyElement.js
WaitForKeyElement(querySelectorString, optionalTimeoutInMilliseconds)
WaitForKeyElement('#someElement', 10000).then((foundElement) => {
//do things with foundElement
});
//in async context*
const foundElement = await WaitForKeyElement('#someElement'));
//do things with foundElement