Created
June 6, 2025 23:52
-
-
Save SpaceSaver/765e738a069bbeec711c11acffc6adf0 to your computer and use it in GitHub Desktop.
Bypass Netflix Household Check
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Bypass Netflix Household Check | |
// @namespace http://tampermonkey.net/ | |
// @version 2025-05-27 | |
// @description Allow Netflix household sharing | |
// @author SpaceSaver | |
// @match https://www.netflix.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=netflix.com | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
const checker = setInterval(() => { | |
if (document.body.children[0].id !== "appMountPoint") { | |
document.body.children[0].style.display = "none"; | |
clearInterval(checker); | |
} | |
}, 1000); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment