Expand width in www.facebook.com

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);
})