[Flightradar24] Bypass Timeout

Bypasses the 15-min timeout

目前为 2022-02-28 提交的版本。查看 最新版本

// ==UserScript==
// @name        [Flightradar24] Bypass Timeout
// @namespace   HKR
// @match       https://www.flightradar24.com/*
// @grant       none
// @version     1.0
// @author      HKR
// @description Bypasses the 15-min timeout
// @run-at      document-load
// ==/UserScript==

(() => {
    setInterval(() => {
        blackoutMapForTimeout = () => console.log("Bypassed 15-min timeout!");
        try {
            dispatcher.userFeatures['map.timeout.mins'] = -1;
        } catch {
            // nothing
        }
    }, 1000);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址