Skip to content

Instantly share code, notes, and snippets.

@Shariar-Hasan
Last active July 8, 2024 05:31
Show Gist options
  • Save Shariar-Hasan/549efd6fd667b7496bdcebecc7d92aff to your computer and use it in GitHub Desktop.
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
/*
πŸ‘‰πŸ‘‰πŸ‘‰πŸ‘‰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
}
@okch-codes
Copy link

Thanks! Let me add the following snippet that enables you to add it to the bookmarks:

javascript:(function(){ 
  const ContentWallHardsell = document.querySelector("#ContentWallHardsell");
  const BodyElement = document.querySelector("body");
  const HardsellOverlay = document.querySelector("#HardsellOverlay");
   
  ContentWallHardsell?.remove();
  HardsellOverlay?.remove();
   
  if (BodyElement !== null && BodyElement !== undefined) {
    BodyElement.style.overflow = "scroll";
  }
   
  window.onscroll = function() {
    return false;
  }
})()

@Shariar-Hasan
Copy link
Author

@okch-codes Thanks brothers, thats great πŸ”₯πŸ”₯πŸ”₯

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment