Skip to content

Instantly share code, notes, and snippets.

@SpaceSaver
Created June 6, 2025 23:52
Show Gist options
  • Select an option

  • Save SpaceSaver/765e738a069bbeec711c11acffc6adf0 to your computer and use it in GitHub Desktop.

Select an option

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);
})();
@mateuskater
Copy link

works but breaks player

@SpaceSaver
Copy link
Author

works but breaks player

You can unpause it from the pause/play button on your keyboard, or use the media controls in the chrome toolbar.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment