Skip to content

Instantly share code, notes, and snippets.

@ahmedazhar05
Created November 23, 2021 17:10
Show Gist options
  • Save ahmedazhar05/09dd3293dd06aaf5079fbc58bafdca2f to your computer and use it in GitHub Desktop.
Save ahmedazhar05/09dd3293dd06aaf5079fbc58bafdca2f to your computer and use it in GitHub Desktop.
To unblock the signup modal in GeeksForGeeks website
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