Message
Message
// @name Curtain
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Ctrl+\ and 30 sec idle activates curtain
// @author ferris
// @match *://*/*
// @grant none
// ==/UserScript==
(function () {
'use strict';
// Only reset the timer if enough time has passed since the last activity
if (currentTime - lastActivityTime > 500) { // 500ms debounce threshold
clearTimeout(inactivityTimer); // Clear any existing timer
clearInterval(countdownInterval); // Clear any existing countdown
interval
lastActivityTime = currentTime; // Update the last activity time