Netflix household bypass

Bypass residency block — Last tested on 16-01-2026.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Netflix household bypass
// @namespace    https://greasyfork.org/users/821661
// @version      1.0.2
// @description  Bypass residency block — Last tested on 16-01-2026.
// @author       hdyzen
// @match        https://www.netflix.com/*
// @icon         https://www.google.com/s2/favicons?domain=www.netflix.com&sz=64
// @grant        none
// @license      GPL-3.0-only
// ==/UserScript==

const originalFetch = window.fetch;

window.fetch = async (...args) => {
    const response = await originalFetch(...args);

    const cloned = response.clone();
    const text = await cloned.text();

    if (text.includes("EBI_MOBILE_WATCH_TEMPORARILY")) {
        return new Response("", {
            status: response.status,
            statusText: response.statusText,
            headers: response.headers,
        });
    }

    return response;
};

const originalOpen = XMLHttpRequest.prototype.open;

XMLHttpRequest.prototype.open = function (method, url, async = true, user, password) {
    if (url.includes("/msl_v1/cadmium/")) {
        this.send = () => {};
    }
    return originalOpen.call(this, method, url, async, user, password);
};