您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes the paywall overlay at Glassdoor.com and re-enables scrolling
// ==UserScript== // @name Remove Glassdoor Paywall // @description Removes the paywall overlay at Glassdoor.com and re-enables scrolling // @author peckjon // @version 1.0 // @include http*://*glassdoor.* // @namespace http://www.greasyfork.org // ==/UserScript== setInterval(function() { if(document.getElementById('ContentWallHardsell')) { document.getElementById('ContentWallHardsell').style.display='none' } document.body.style.overflow='auto' document.body['onscroll']=function(){} }, 3000)