Greasy Fork is available in English.
美化<误>各网页界面
当前为
// ==UserScript==
// @name Beautify
// @namespace undefined
// @version 0.0.1
// @description 美化<误>各网页界面
// @author symant233
// @require https://cdn.staticfile.org/jquery/3.4.1/jquery.min.js
// @match *://cn.vuejs.org/v2/guide/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var $ = window.jQuery;
function vue_doc(){
$('body').css("padding-top", "43px");
$('#header').css({"padding": "0px", "height": "43px", "box-shadow": "0px 0px 5px 0px rgba(0,0,0,0.2)"});
$('#logo').css("padding-left", "10px");
$('#nav').css("top", "1px");
$('.sidebar').css("top", "43px");
$('.sidebar-inner').css("padding-top", "13px");
$('body').append('<style>::-webkit-scrollbar{width:10px}::-webkit-scrollbar-track{background:#f1f1f1}::-webkit-scrollbar-thumb{background:#aaa}::-webkit-scrollbar-thumb:hover{background:#777}</style>')
}
vue_doc();
})();