Greasy Fork is available in English.
Bypasses the 30-min timeout
当前为
// ==UserScript==
// @name [Flightradar24] Bypass Timeout
// @namespace HKR
// @match https://www.flightradar24.com/*
// @grant none
// @version 1.1
// @author HKR
// @description Bypasses the 30-min timeout
// @run-at document-load
// ==/UserScript==
(() => {
setInterval(() => {
try {
dispatcher.features['map.timeout.mins'] = 999999999999;
} catch {
// nothing
}
}, 1000);
})();