// ==UserScript== // @name 掘金文章布局调整插件 // @namespace http://tampermonkey.net/ // @version 1.1 // @description 掘金文章布局调整 // @author Denis Ding // @require https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js // @match https://juejin.cn/post/* // @grant none // @note 21-04-11 1.0 去广告 // @note 21-09-24 1.1 调整目录及主体内容宽度,添加目录滚动 // @downloadURL https://update.greasyfork.icu/scripts/424839/%E6%8E%98%E9%87%91%E6%96%87%E7%AB%A0%E5%B8%83%E5%B1%80%E8%B0%83%E6%95%B4%E6%8F%92%E4%BB%B6.user.js // @updateURL https://update.greasyfork.icu/scripts/424839/%E6%8E%98%E9%87%91%E6%96%87%E7%AB%A0%E5%B8%83%E5%B1%80%E8%B0%83%E6%95%B4%E6%8F%92%E4%BB%B6.meta.js // ==/UserScript== (function() { 'use strict'; //广告去除 $('head').append(""); //布局调整 $('head').append(""); $('head').append(""); $('head').append(""); //个人信息等无关block $('head').append(""); //目录结构 $('head').append(""); $('head').append(""); $('head').append(""); $('head').append(""); //点赞评论分享按钮 $('head').append(""); $('head').append(""); //置顶按钮 $('head').append(""); })();