🏠 Home 

onVisibilityChange

Waits until the tab is focused, executing a callback function when it happens.

สคริปต์นี้ไม่ควรถูกติดตั้งโดยตรง มันเป็นคลังสำหรับสคริปต์อื่น ๆ เพื่อบรรจุด้วยคำสั่งเมทา // @require https://update.greasyfork.org/scripts/480374/1283358/onVisibilityChange.js

// ==UserScript==
// @name         onVisibilityChange
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Waits until the tab is focused, executing a callback function when it happens.
// @author       IgnaV
// @grant        none
// ==/UserScript==
const onVisibilityChange = (onFocus, onBlur, minTime = 0) => {
let lastExecutionTime = 0;
document.addEventListener('visibilitychange', function() {
const currentTime = Date.now();
if (currentTime - lastExecutionTime >= minTime * 1000) {}
if (document.visibilityState === 'visible') {
onFocus?.();
} else {
onBlur?.();
}
lastExecutionTime = currentTime;
});
};