Skip to content

Instantly share code, notes, and snippets.

@imaginate
Created May 25, 2022 00:10
Show Gist options
  • Save imaginate/a9812c8cd032d6f9c664e64951758a56 to your computer and use it in GitHub Desktop.
Save imaginate/a9812c8cd032d6f9c664e64951758a56 to your computer and use it in GitHub Desktop.
Remove Glassdoor "Add Your Review Or Salary To Continue" Block (Paste JS Into Console)
(function($){
$.querySelector('#ContentWallHardsell').remove();
$.querySelector('body').style.overflow = 'scroll';
const style = $.createElement('style');
style.innerHTML = '#LoginModal{display:none!important}';
$.head.appendChild(style);
window.addEventListener('scroll',e => e.stopPropagation(),true);
})(document);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment