Skip to content

Instantly share code, notes, and snippets.

@ahmedazhar05
Last active September 23, 2021 15:49
Show Gist options
  • Save ahmedazhar05/e4124af44b26bab77f37af01ada018b6 to your computer and use it in GitHub Desktop.
Save ahmedazhar05/e4124af44b26bab77f37af01ada018b6 to your computer and use it in GitHub Desktop.
Bookmarklet: Access Glassdoor content and reviews without having to log in
javascript: (function() {
if (/https:\/\/(www\.)?glassdoor\.co(\.in|m)/g.test(document.URL)) {
document.querySelector('#HardsellOverlay').remove();
document.body.style.overflow = 'auto';
document.body.onscroll = null;
[...document.querySelectorAll('.css-lyyc14')].forEach(e => e.style.maxHeight = 'unset');
} else alert("This Feature only works Glassdoor websites");
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment