Login reminder popup remover (developement ceased - not up to date)

Removes the nagging login popups and banners from mobile and desktop versions of Facebook, Instagram, Reddit, Twitter, Quora, Ask.fm, VK, Pinterest, Tumblr, Twitch and from the mobile versions of Youtube and TikTok.

< Feedback on Login reminder popup remover (developement ceased - not up to date)

Review: Good - script works

§
Posted: 2023-12-06

Hello
Reddit is not working in the current code. I suggest inserting the following code to redditShadowRootPatch()


//delete app qr code
document.querySelector("#nsfw-qr-dialog").remove();
//remove backdrop
var bodyChildren = document.getElementsByTagName('body')[0].children;

for (var i = 0; i < bodyChildren.length; i++) {
try {
if (bodyChildren[i].style.backdropFilter){
bodyChildren[i].style.backdropFilter = 'none';
}
} catch (err){
}

}

//remove overlay and return control
try {
document.querySelector("body > div:nth-child(7)").remove();}catch(err){
}

StephenPAuthor
§
Posted: 2023-12-17

Thank you, I've added the function to temove the backdrop filter and removed the overlay and the nsfw qr dialog in the new version of the script!

Post reply

Sign in to post a reply.