Skip to content

Instantly share code, notes, and snippets.

@SpaceSaver
Created June 6, 2025 23:52
Show Gist options
  • Save SpaceSaver/765e738a069bbeec711c11acffc6adf0 to your computer and use it in GitHub Desktop.
Save SpaceSaver/765e738a069bbeec711c11acffc6adf0 to your computer and use it in GitHub Desktop.
Bypass Netflix Household Check
// ==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