Floating Table of Contents

Makes the Wikipedia Table of Contents (TOC) float at a fixed position and not scroll with the rest of the page. The position can be customized with the "left:" and "top:" parameters (which define in pixels the distance to the left and top border, respectively). Works for any Mediawiki-powered wiki page.

当前为 2014-03-13 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Floating Table of Contents
  3. // @version 1.0
  4. // @namespace http://userscripts.org/scripts/show/122189
  5. // @description Makes the Wikipedia Table of Contents (TOC) float at a fixed position and not scroll with the rest of the page. The position can be customized with the "left:" and "top:" parameters (which define in pixels the distance to the left and top border, respectively). Works for any Mediawiki-powered wiki page.
  6. // @include http://*.wikipedia.org/*
  7. // @include https://*.wikipedia.org/*
  8. // @include http://rationalwiki.org/*
  9. // ==/UserScript==
  10.  
  11. var styleEl = document.createElement('style');
  12. styleEl.type = 'text/css';
  13. styleEl.innerHTML = 'td.mbox-image { display: none;}table.toc { position: fixed; top: 160px; left: 160px; border: 0px; width: 220px; border-bottom: 1px SOLID #CCC; border-left: 1px SOLID #CCC;}table.toc tbody tr td ul { overflow: auto; max-height: 500px;}body { overflow-x: hidden;}';
  14. document.documentElement.appendChild(styleEl);