您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
将正文的小节标题固定到右侧
// ==UserScript== // @name ES6入门(阮一峰)-方便阅读小标题 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 将正文的小节标题固定到右侧 // @author imzhi <[email protected]> // @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); })();