Greasy Fork is available in English.

Remove Glassdoor Paywall 2.0

Hide Glasdoor paywall belt from page navigation and reenable scroll.

  1. // ==UserScript==
  2. // @icon https://www.glassdoor.com/app/static/img/mobile/icons/touch-icon-57.png
  3. // @name Remove Glassdoor Paywall 2.0
  4. // @name:pt-BR Remover Paywall Glassdoor 2.0
  5. // @description Hide Glasdoor paywall belt from page navigation and reenable scroll.
  6. // @description:pt-br Esconder a faixa de login e reabilitar o scroll da página.
  7. // @version 2.0.1
  8. // @namespace http://www.greasyfork.org
  9. // @author dmcadoo,peckjon,R4wwd0G
  10. // @include http*://*glassdoor.*
  11. // ==/UserScript==
  12.  
  13.  
  14. setInterval(function() {
  15. if(document.getElementById('ContentWallHardsell')) {
  16. document.getElementById('ContentWallHardsell').style.display='none'
  17. }
  18. document.getElementsByClassName('hardsellOverlay')[0].remove();
  19. document.getElementsByTagName("body")[0].style.overflow = "scroll";
  20. let style = document.createElement('style');
  21. style.innerHTML = `
  22. #LoginModal {
  23. display: none!important;
  24. }
  25. `;
  26. document.head.appendChild(style);
  27. window.addEventListener("scroll", function (event) {
  28. event.stopPropagation();
  29. }, true);
  30. }, 3000)