Skip to content

Instantly share code, notes, and snippets.

@matheuscorreia
Created February 27, 2023 20:49
Show Gist options
  • Save matheuscorreia/ba8900933c580669688d644c5d8f6684 to your computer and use it in GitHub Desktop.
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
// ==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