// ==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 // @downloadURL 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('') } vue_doc(); })();