Collapse the Greasy Fork Header

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

当前为 2015-05-01 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Collapse the Greasy Fork Header
  3. // @namespace english
  4. // @description Collapse the Greasy Fork Header - remove image, make title text smaller and more subdued
  5. // @include http*://*greasyfork.org*
  6. // @version 1.2
  7. // @grant GM_addStyle
  8. // ==/UserScript==
  9. // Main - Reddit The Button Show Cheaters
  10.  
  11. var style = document.createElement('style');
  12. style.type = 'text/css';
  13. style.innerHTML = '#site-name img { display: none !important;}#main-header h1 { font-size: 32px !important; line-height: 150% !important;}';
  14. document.getElementsByTagName('head')[0].appendChild(style);