Collapse the Greasy Fork Header

Collapse the Greasy Fork Header - remove image, make title text smaller and more subdued

目前为 2015-05-01 提交的版本。查看 最新版本

// ==UserScript==
// @name        Collapse the Greasy Fork Header
// @namespace   english
// @description Collapse the Greasy Fork Header - remove image, make title text smaller and more subdued 
// @include     http*://*greasyfork.org*
// @version     1.5
// @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 = '#site-name img {  display: none !important;}#main-header h1 {  font-size: 32px !important;  line-height: 150% !important;}';
document.getElementsByTagName('head')[0].appendChild(style);