您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove the right column on facebook ( web platform )
// ==UserScript== // @name Facebook remove right column // @namespace http://tampermonkey.net/ // @version 0.2 // @description Remove the right column on facebook ( web platform ) // @author n24xxx // @match https://facebook.com // @icon https://i.imgur.com/F8ai0jB.png // @include http://facebook.com/* // @include http://*.facebook.com/* // @include https://facebook.com/* // @include https://*.facebook.com/* // @grant none // ==/UserScript== (function() { rightCol = document.querySelector('div#rightCol') contentArea = document.querySelector('div#contentArea') rightCol.setAttribute('style','display : none') contentArea.setAttribute('style','right: 0px; width: 100% !important') })();