Waits until the tab is focused, executing a callback function when it happens.
Script này sẽ không được không được cài đặt trực tiếp. Nó là một thư viện cho các script khác để bao gồm các chỉ thị meta
// @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;
});
};