Skip to content

Instantly share code, notes, and snippets.

@Christopher-Hayes
Created July 17, 2021 20:38
Show Gist options
  • Save Christopher-Hayes/66bc13151c363909ada2a8a0faacba4c to your computer and use it in GitHub Desktop.
Save Christopher-Hayes/66bc13151c363909ada2a8a0faacba4c to your computer and use it in GitHub Desktop.
Hide GlassDoor Hardsell Popup - ViolentMonkey Script
// ==UserScript==
// @name Hide hardsell - glassdoor.com
// @namespace Violentmonkey Scripts
// @match https://www.glassdoor.com/*
// @version 1.0
// @author @christopher-hayes
// @description Hide the hardsell popup on Glassdoor
// ==/UserScript==
function killHardSell() {
document.body.style.height = 'unset';
document.body.style.overflow = 'unset';
document.querySelector('#HardsellOverlay').parentElement.removeChild(document.querySelector('#HardsellOverlay'));
window.onscroll = null;
}
const checkForHardSell = function() {
// Uses Facebook Login Button to know when the hardsell is fully loaded
if (document.body.contains(document.querySelector('#FbButton'))) {
console.log('hardsell - KILL');
killHardSell();
} else {
console.log('hardsell - not found, wait 500ms...');
setTimeout(checkForHardSell, 500);
}
}
console.log('hardsell - start looking');
checkForHardSell();
@Christopher-Hayes
Copy link
Author

Update: I switched to using the "Bypass Paywalls Clean" extension on Chrome and Firefox to bypass hardsells across dozens of sites.

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