Skip to content

Instantly share code, notes, and snippets.

@jenkoian
Forked from se79419ed/glassdoor.txt
Last active October 20, 2021 15:43
Show Gist options
  • Save jenkoian/b75e3bddb8bb1bfad2430790217d785a to your computer and use it in GitHub Desktop.
Save jenkoian/b75e3bddb8bb1bfad2430790217d785a 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