Last active
July 8, 2024 05:31
-
-
Save Shariar-Hasan/549efd6fd667b7496bdcebecc7d92aff to your computer and use it in GitHub Desktop.
A Script for remove the block wall of glassdoor protection wall and for full scroll functionality
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
/* | |
ππππUsage: | |
π open inpect tool (ctrl + shift + i or right click + inspect) | |
π click on "console" tab | |
π then paste the whole code there. | |
π BOOM you got your glassdoor full scrollable | |
π hit a Starβ if you get some help by this π₯Ήπ₯³ | |
π Created by : π₯Shariar Hasan - https://github.com/Shariar-Hasan | |
π Medium Blog Link : π₯https://medium.com/@ShariarHasan/unlocking-glassdoor-full-scroll-a-quick-console-trick-d8caa02a242c | |
*/ | |
// variables | |
const ContentWallHardsell = document.querySelector("#ContentWallHardsell"); | |
const BodyElement = document.querySelector("body"); ; | |
const HardsellOverlay = document.querySelector("#HardsellOverlay"); | |
// actions to remove the top blocker layer | |
ContentWallHardsell?.remove(); | |
HardsellOverlay?.remove(); | |
// active body class for overflow scroling | |
if (BodyElement !== null && BodyElement !== undefined) { | |
BodyElement.style.overflow = "scroll"; | |
} | |
// remove the scooll event litener | |
window.onscroll = function() { | |
return false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks! Let me add the following snippet that enables you to add it to the bookmarks: