[Flightradar24] Bypass Timeout

Bypasses the 30-min timeout

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

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

function modifyConfigString(configStr, key, value) {
    let regex = new RegExp(`("${key}":\\s*)[^,]+`, 'g');
    let newConfigStr = configStr.replace(regex, `$1${value}`);

    return newConfigStr;
}

function patchNode(node) {
    const changeArr = [
        ['map.timeout.mins', 0]
        // room for more changes...
    ];

    changeArr.forEach(x => node.innerText = modifyConfigString(node.innerText, x[0], x[1]));
}

new MutationObserver(mutationsList => {
    mutationsList.forEach(mutationRecord => {
        [...mutationRecord.addedNodes]
          .filter(node => node.tagName === 'SCRIPT')
          .forEach(node => patchNode(node));
    });
}).observe(document, { childList: true, subtree: true });