Last active
November 13, 2023 01:29
-
-
Save jjeising/ff381be352ee201a88b7 to your computer and use it in GitHub Desktop.
Get rid of Netflix's annoying "Who's watching?" screen
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 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