IMGUR - Minimal Redesign

IMGUR - Minimal Redesign - Remove homepage images and other dross

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

  1. // ==UserScript==
  2. // @name IMGUR - Minimal Redesign
  3. // @namespace english
  4. // @description IMGUR - Minimal Redesign - Remove homepage images and other dross
  5. // @include http*://*imgur.com*
  6. // @version 1.5
  7. // @run-at document-start
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10.  
  11.  
  12. // Main - CSS hides two classes - video add box, and call to action box under it. - also social media
  13.  
  14. var style = document.createElement('style');
  15. style.type = 'text/css';
  16. style.innerHTML = ' /*\n*//*remove homepage images*//*\n*//*\n*/.main #imagelist,#tags-current-list,#outside-tagging-showhide,.sentence-sorting{display: none !important;}/*\n*/#topbar a.logo .logo-icon { background: none !important;}/*\n*/#content #imagelist{display:block !important;} ';
  17. document.getElementsByTagName('head')[0].appendChild(style);
  18.