ES6入门(阮一峰)-方便阅读小标题

将正文的小节标题固定到右侧

// ==UserScript==
// @name         ES6入门(阮一峰)-方便阅读小标题
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  将正文的小节标题固定到右侧
// @author       imzhi <yxz_blue@126.com>
// @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
// ==/UserScript==

(function() {
    'use strict';

    const css = `
@charset utf-8;
#content-toc {
    position: fixed;
    right: 20px;
    padding-right: 20px;
}
`;
    GM_addStyle(css);
})();