-
-
Save pushp1997/7c4ab9f8e437a3f0a5d943fd3ee279b8 to your computer and use it in GitHub Desktop.
To unblock the signup modal in GeeksForGeeks website
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
javascript: (function() { | |
if (/^https?:\/\/(www\.)?geeksforgeeks\./g.test(document.URL)) { | |
document.querySelector(".login-modal-div").style.display = "none"; | |
window.onscroll = null; | |
document.body.style.position = "initial"; | |
} else alert("This feature only works in GeeksForGeeks site"); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment