您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
es6 文档 script
// ==UserScript== // @name es6.ruanyifeng // @namespace ziggy chen // @license MIT // @version 1.2 // @description es6 文档 script // @author Ziggy chen // @match *://es6.ruanyifeng.com/* // @icon https://es6.ruanyifeng.com/favicon.ico // @run-at document-start // @grant GM_addStyle // ==/UserScript== (function () { "use strict"; // content 高度 800 GM_addStyle( "@media (min-width: 40rem) { #content { width: 800px !important; }}" ); GM_addStyle( "#back_to_top { right: 25px!important;margin-left: 0 !important;}" ); GM_addStyle("#edit { right: 25px!important;margin-left: 0 !important;}"); GM_addStyle("#theme { right: 25px!important;margin-left: 0 !important;}"); })();