您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
美化文章内容和目录
// ==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=greasyfork.org // @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); }); })();