您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
No more idiotic social media popups on Quora, better version with no scrollbar fix.
// ==UserScript== // @name Antisocial Quora Fork // @description No more idiotic social media popups on Quora, better version with no scrollbar fix. // @date 2015-02-22 // @include ^.*?.quora.com.*?$ // @license MIT // @grant none // @version 0.0.1.2017 // @namespace antisocialquorafork // ==/UserScript== // Add global CSS styles // from http://diveintogreasemonkey.org/patterns/add-css.html function addGlobalStyle(css) { var head, style; head = document.getElementsByTagName('head')[0]; if (!head) { return; } style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = css; head.appendChild(style); } addGlobalStyle('.fb-facepile { display: none !important; }'); addGlobalStyle('.modal_signup_background { display: none !important; }'); addGlobalStyle('.modal_signup_dialog { display: none !important; }'); addGlobalStyle('body { overflow: auto !important; }');