Skip to content

Instantly share code, notes, and snippets.

@schinsue
Forked from se79419ed/glassdoor.txt
Created March 29, 2022 08:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schinsue/9a84e432ebc50d58f4d3fe4b6938f9bd to your computer and use it in GitHub Desktop.
Save schinsue/9a84e432ebc50d58f4d3fe4b6938f9bd to your computer and use it in GitHub Desktop.
bookmarklet to remove hardsell overlay from glassdoor.com
javascript:(function(){
document.getElementById("ContentWallHardsell").remove();
document.getElementsByTagName("body")[0].style.overflow = "scroll";
let style = document.createElement('style');
style.innerHTML = `
#LoginModal {
display: none!important;
}
`;
document.head.appendChild(style);
window.addEventListener("scroll", function (event) {
event.stopPropagation();
}, true);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment