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 most Mediawiki-powered wiki websites.

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

  1. // ==UserScript==
  2. // @name Floating Table of Contents
  3. // @version 1.2
  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 most Mediawiki-powered wiki websites.
  6. // @include http://*.wikipedia.org/*
  7. // @include https://*.wikipedia.org/*
  8. // @include http://rationalwiki.org/*
  9. // ==/UserScript==
  10. var styleEl = document.createElement('style');
  11. styleEl.type = 'text/css';
  12. 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;}';
  13. document.documentElement.appendChild(styleEl);
  14. var styleEl = document.createElement('style');
  15. styleEl.type = 'text/css';
  16. styleEl.innerHTML = 'td.mbox-image { display: none;} div.toc { position: fixed; top: 160px; left: 160px; border: 0px; width: 220px; border-bottom: 1px SOLID #CCC; border-left: 1px SOLID #CCC;} div.toc ul {overflow: auto; max-height: 500px;} body {overflow-x: hidden;}';
  17. document.documentElement.appendChild(styleEl);