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 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: