Created
February 27, 2023 20:49
-
-
Save matheuscorreia/ba8900933c580669688d644c5d8f6684 to your computer and use it in GitHub Desktop.
A Tampermonkey user script to remove the content wall from Glassdoor review pages
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
// ==UserScript== | |
// @name Remove Glassdoor reviews content wall | |
// @namespace mailto:matheuscorreia2005@gmail.com | |
// @version 1.0 | |
// @description Get rid of the annoying review content wall when browsing glassdoor. | |
// @author Matheus Correia | |
// @match https://www.glassdoor.com/Reviews/* | |
// @icon https://www.glassdoor.com/favicon.ico | |
// @grant none | |
// @run-at document-end | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
const contentWall = document.getElementById("ContentWallHardsell") | |
if (contentWall) { | |
contentWall.remove() | |
document.body.style.overflow = "unset" | |
window.onscroll = undefined | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment