Netflix household bypass

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==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);
};