您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Expand width in www.facebook.com. Hide top bar and it will show only if mouse cursor move to top. Hide chat bar and it will show only if mouse cursor move to right side.
// ==UserScript== // @name Expand width in www.facebook.com // @namespace Expand width in www.facebook.com // @include /^https\:\/\/www\.facebook\.com\// // @description Expand width in www.facebook.com. Hide top bar and it will show only if mouse cursor move to top. Hide chat bar and it will show only if mouse cursor move to right side. // @version 0.1.0 // @author zero0evolution // @run-at document-start // ==/UserScript== "use strict" document.addEventListener("DOMContentLoaded",function(){ const cssElem = document.createElement('link'); cssElem.rel = 'stylesheet'; cssElem.type = 'text/css'; cssElem.href = 'https://zero0evolution.github.io/GreasyForkSync/Expand width in www.facebook.com.css'; // cssElem.media = 'all'; // cssElem.crossorigin="anonymous"; // cssElem.async = true; document.head.appendChild(cssElem); })