掘金美化器 By Heyl

美化文章内容和目录

// ==UserScript==
// @name         掘金美化器 By Heyl
// @namespace    http://tampermonkey.net/
// @version      1.0.2
// @description  美化文章内容和目录
// @author       yongli.he
// @license      GPL-3.0 License
// @match      https://juejin.cn/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=gf.qytechs.cn
// @grant        none
// @require https://cdn.bootcdn.net/ajax/libs/jquery/3.7.1/jquery.min.js
// ==/UserScript==

(function() {
    'use strict';
    const render = function(){
        $('.main-container').css('max-width', '98vw');
        $('.main-area').css('width', 'auto');
        $('.main-area').css('margin-left', '100px');
        $('.main-area').css('margin-right', 'calc(25rem + 15px)');
    }
    const renderSuspendPanel = function(){
        $('.article-suspended-panel').css('margin-left', '1rem');
    }
    $(function(){
        setTimeout(render, 1500);
        setTimeout(renderSuspendPanel, 3000);
    });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址