Skip to content

Instantly share code, notes, and snippets.

@pushp1997
Forked from ahmedazhar05/GFG Unblocker.js
Created April 11, 2022 06:13
Show Gist options
  • Save pushp1997/7c4ab9f8e437a3f0a5d943fd3ee279b8 to your computer and use it in GitHub Desktop.
Save pushp1997/7c4ab9f8e437a3f0a5d943fd3ee279b8 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