Facebook grey minimalist

Grey subdued fb

目前为 2016-05-04 提交的版本,查看 最新版本

// ==UserScript==
// @name        Facebook grey minimalist 
// @namespace   english
// @description Grey subdued fb
// @include     http*://*facebook.com*
// @version     1.14
// @run-at document-start
// @grant       GM_addStyle
// ==/UserScript==

// Main - Collapse the Greasy Fork Header


var style = document.createElement('style');
style.type = 'text/css';

style.innerHTML =  '                    /*\n*//*\n*/ .fbChatSidebar ,.fbChatSidebar  {display: none !important ;}/*\n*//*\n*//* body *//*\n*/._5vb_, ._5vb_ #contentCol {/*\n*/    background-color: #F5F5F5 !important ; /*\n*/}/*\n*//*\n*//*\n*//* top bar *//*\n*/ ._2s1x ._2s1y {    background-image: none !important ;     background-color: #E8E8E8 !important ; border-bottom: 1px solid #D2D2D2 !important ;}   /*\n*/ /*\n*/._2s1x ._2s25 {/*\n*/    text-shadow: none !important ;/*\n*/}/*\n*/._2s1x ._2s1y { /*\n*/    color: #6D6D6D !important ;/*\n*/}/*\n*//*\n*/._4u91 {/*homepage feed item counter home*//*\n*/    background: #FBFBFB !important ;/*\n*/    box-shadow: inset 0 1px rgba(204, 204, 204, 0.77), 0 1px rgba(255, 255, 255, .15) !important ;/*\n*/    margin-left: 4px !important ;/*\n*/}/*\n*//*\n*/._585- { /*search bar*//*\n*/    border: 1px solid #969696 !important ;/*\n*/}/*\n*//*\n*//*\n*//*\n*//*\n*//*\n*//*\n*/ /*   page struct   *//*\n*//*\n*/.sidebarMode #globalContainer {/*\n*/    padding-right: 0 !important ;/*\n*/}/*\n*/html body._5vb_ #globalContainer {/*\n*/    width: 95% !important ;/*\n*/}/*\n*/html ._5vb_._5vb_.hasLeftCol .hasRightCol div#contentArea {/*\n*/    width: 68% !important ;/*\n*/}/*\n*/._5vb_.hasLeftCol ._5r-_ div#rightCol {/*\n*/    padding: 0 !important ;/*\n*/    width: 28% !important ;/*\n*/}/*\n*/#mainContainer .groupLitestandClassicJumpLayout div#headerArea {/*\n*/    padding-bottom: 12px !important ;/*\n*/    width: 100% !important ;/*\n*/}/*\n*/ /*\n*/.groups_rhc div{max-width: 100% !important ;}/*\n*//*\n*//*\n*//*\n*//*\n*/ /*   home   *//*\n*//*\n*/._5vx4._5vx6 ._5vwy ._13xf {/*\n*/    background: #777777 !important ;/*\n*/}/*\n*/._5vwz ._13xf {/*\n*/    background-color: #D0D0D0 !important ; /*\n*/}/*\n*//*\n*//*\n*/ ._2a2q {  margin: 5px auto;} /*      */  /*\n*//* profile pages *//*\n*//*\n*/.fbx #globalContainer {/*\n*/    width: 95% !important; /*\n*/}/*\n*//*\n*/.hasRightCol #contentArea {/*\n*/    width: 100% !important; /*\n*/}/*\n*/.timelineLayout #contentArea {/*\n*/    position: relative !important; /*\n*/    width: 100% !important; /*\n*/}/*\n*//*\n*/._5nb8 {/*\n*/    float: right !important; /*\n*/    margin-left: 15px !important; /*\n*/    width: 70% !important; /*\n*/}/*\n*/._4gt0, ._4lh .fbTimelineUnit[data-type="r"] {/*\n*/    width: 100% !important; /*\n*/}/*\n*/._1vc- {/*\n*/    float: left !important; /*\n*/    margin-left: 0 !important; /*\n*/    width: 28% !important; /*\n*/}/*\n*/ol._2t4v clearfix{/*\n*/	    width: 100% !important; /*\n*/}/*\n*/                                 ';

document.getElementsByTagName('head')[0].appendChild(style);