Gofile bypass frozen links

bypass frozen files in gofile

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name                Gofile bypass frozen links
// @namespace           https://greasyfork.org/users/821661
// @match               https://gofile.io/*
// @grant               none
// @version             1.0
// @run-at              document-start
// @author              hdyzen
// @description         bypass frozen files in gofile
// @license             GPL-3.0-only
// ==/UserScript==

function patchResponseJSON() {
    try {
        Response.prototype.json = async function () {
            const resText = await this.text();
            const modRes = resText.replaceAll('"isFrozen":true', '"isFrozen":false');

            return JSON.parse(modRes);
        };
    } catch (error) {
        console.error("Error in replace Response.json(): ", error);
    }
}
patchResponseJSON();