Created
November 23, 2021 17:10
-
-
Save ahmedazhar05/09dd3293dd06aaf5079fbc58bafdca2f 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