Skip to content

Instantly share code, notes, and snippets.

View pushp1997's full-sized avatar
📚
Learning

Pushp Vashisht pushp1997

📚
Learning
View GitHub Profile
@pushp1997
pushp1997 / GFG Unblocker.js
Created April 11, 2022 06:13 — forked from ahmedazhar05/GFG Unblocker.js
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");
})();