Created
July 6, 2022 22:01
-
-
Save hyjk2000/a94c5087a15b9160ad7ab1edc5534321 to your computer and use it in GitHub Desktop.
Glassdoor No Hardsell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
const overlay = document.querySelector("#ContentWallHardsell"); | |
overlay.parentNode.removeChild(overlay); | |
document.body.style.overflow = "visible"; | |
(function (elem, eventType) { | |
for (const { listener, useCapture } of getEventListeners(elem)[eventType] || | |
[]) { | |
elem.removeEventListener(eventType, listener, { useCapture }); | |
delete elem[`on${eventType}`]; | |
} | |
})(window, "scroll"); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment