Currently not working - testing phase 1 - Google Help Forum - Top Contributor Hidden Forum - Compact and Minimal
当前为
// ==UserScript==
// @name Google Help Forum - Top Contributor Hidden Forum - Compact and Minimal
// @namespace english
// @description Currently not working - testing phase 1 - Google Help Forum - Top Contributor Hidden Forum - Compact and Minimal
// @include http*://*productforums.google.com/forum*
// @version 1.3
// @run-at document-start
// @grant GM_addStyle
// ==/UserScript==
// Main - CSS hides some block elements and expands other main divs to 100%
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = ' /*\n*//*Google Help Forum - compact/ minimal*//*\n*//*\n*//*\n*//*\n*/.A6F45CD-T-j .A6F45CD-T-C {/*\n*/ overflow: hidden !important;/*\n*/ padding-top: 0 !important;/*\n*/ padding-bottom: 0 !important;/*\n*/}/*\n*/.A6F45CD-W-l ,.A6F45CD-T-u .A6F45CD-T-g{ padding: 0 !important;}/*\n*/.A6F45CD-T-G { padding: 5px 0 !important;}/*\n*/.A6F45CD-T-t {/*\n*/ padding: 5px 0 !important;/*\n*/ border-bottom: 1px solid #DFDFDF !important;/*\n*/} /*\n*//*\n*//*between categories*//*\n*//*\n*/.A6F45CD-T-v { margin: 5px 0 5px 22px !important;}/*\n*/.A6F45CD-T-u { margin: 10px 0 5px !important;}/*\n*//*\n*/.A6F45CD-qb-o { display: none !important; }/*\n*/ ';
document.getElementsByTagName('head')[0].appendChild(style);