// ==UserScript== // @name ES6入门(阮一峰)-方便阅读小标题 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 将正文的小节标题固定到右侧 // @author imzhi // @match https://es6.ruanyifeng.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=ruanyifeng.com // @grant GM_addStyle // @run-at document-start // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; const css = ` @charset utf-8; #content-toc { position: fixed; right: 20px; padding-right: 20px; } `; GM_addStyle(css); })();