Skip to content

Instantly share code, notes, and snippets.

@jjeising
Last active November 13, 2023 01:29
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jjeising/ff381be352ee201a88b7 to your computer and use it in GitHub Desktop.
Save jjeising/ff381be352ee201a88b7 to your computer and use it in GitHub Desktop.
Get rid of Netflix's annoying "Who's watching?" screen
// ==UserScript==
// @name Netflix Profile Gate Blocker
// @description Get rid of Netflix's annoying "Who's watching?" screen
// @include https://www.netflix.com/*
// @version 2.0
// ==/UserScript==
/*
Netflix shows a profile selection window when the
user is inactive for more than 30 minutes.
This works as of 2017-03-06 with the (updated)
Netflix akira interface.
It may require adaption when the profile manager
file path or functionality changes.
Install: Save with .user.js extension and drag on Chromes
Extension preferences ( chrome://extensions/ ).
*/
(function() {
function inject() {
window.setTimeout(function() {
window.setInterval(function() {
window
.C
.require("utils/profileManager.js")
.resetProfileGateCookieExpiry();
}, 5 * 60 * 1000);
}, 2500);
}
var script = document.createElement('script');
script.appendChild(document.createTextNode('('+ inject +')();'));
document.body.appendChild(script);
console.log('Netflix Profile Gate Blocker active.');
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment