[Flightradar24] Bypass Timeout

Bypasses the 15-min timeout

当前为 2022-03-12 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name [Flightradar24] Bypass Timeout
  3. // @namespace HKR
  4. // @match https://www.flightradar24.com/*
  5. // @grant none
  6. // @version 1.0
  7. // @author HKR
  8. // @description Bypasses the 15-min timeout
  9. // @run-at document-load
  10. // ==/UserScript==
  11.  
  12. (() => {
  13. setInterval(() => {
  14. blackoutMapForTimeout = () => console.log("Bypassed 15-min timeout!");
  15. try {
  16. dispatcher.userFeatures['map.timeout.mins'] = -1;
  17. } catch {
  18. // nothing
  19. }
  20. }, 1000);
  21. })();

QingJ © 2025

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