@יעקב-מ-פינס כעת הצלחתי, וזה עובד אצלי היטב (מקודם הTampermonkey פשוט היה מושבת..),
// ==UserScript==
// @name refresh kcm
// @namespace http://tampermonkey.net/
// @version 2024-05-15
// @description try to take over the world!
// @author You
// @match https://kcm.fm/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
(function() {
console.log('test...');
window.addEventListener('online', () => {
console.log('is online - refreshing...');
location.reload(true);
});
})();