您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove the Games from the right side of Facebook
当前为
// ==UserScript== // @name Remove Game Ads from Facebook // @namespace RemoveGames // @description Remove the Games from the right side of Facebook // @include *.rycamelot.com/*main_src.php* // @include *.beta.rycamelot.com/*main_src.php* // @include *apps.facebook.com/kingdomsofcamelot/* // @include *.rockyou.com/rya/* // @license http://creativecommons.org/licenses/by/4.0/ // @version 1.0.1 // ==/UserScript== function GM_addStyle(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); } GM_addStyle("._470m { display: none !important;}"); // remove annoying facebook games toolbars and junk GM_addStyle("._31e { position: inherit !important;}"); // something that stops scrolling GM_addStyle("#rightCol { display: none !important;}");