您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove Popup "Add your review or salary to continue using Glassdoor"
// ==UserScript== // @name Glassdoor Review Popup Remover // @version 0.1 // @description Remove Popup "Add your review or salary to continue using Glassdoor" // @author Petros Dhespollari // @match *.glassdoor.*/* // @license Creative Commons Attribution-ShareAlike 4.0 International License // @namespace https://greasyfork.org/users/1280675 // ==/UserScript== (function() { function fixScrolling() { var contentWallHardsell = document.getElementById("ContentWallHardsell"); if (contentWallHardsell) { contentWallHardsell.remove(); } window.onscroll = null; document.body.style.height = "unset"; document.body.style.overflow = "unset"; } var observer = new MutationObserver(function(mutations) { mutations.forEach(function(mutation) { if (mutation.addedNodes) { Array.from(mutation.addedNodes).forEach(function(addedNode) { if (addedNode.nodeName === "DIV" && addedNode.id === "ContentWallHardsell") { fixScrolling(); } }); } }); }); observer.observe(document.body, { childList: true, subtree: true }); })();