[Flightradar24] Bypass Timeout

Bypasses the 30-min timeout

ของเมื่อวันที่ 20-01-2024 ดู เวอร์ชันล่าสุด

// ==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);
})();