挺喜欢掘金侧边栏的小目录的,所以自己去找了一下教程,总结了一下具体步骤:
下载TampermonKey油候脚本
- 百度搜索极简插件
- 找到Tampermonkey这个插件 下载
- 解压 放入浏览器的插件内
安装
- 左边点击Tampermonkey这个插件 出来如下图所示区域
- 点击 管理面板 会出来如下图所示的内容 点击右上方+ 号
- 复制如下代码到编辑器区域
// ==UserScript==
// @name 掘金小册目录
// @description:zh-cn 自动生成掘金小册目录
// @namespace https://juejin.im/book/*
// @version 1.0
// @description create content
// @author Simon
// @match https://juejin.im/book/*
// @require https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js
// @grant none
// ==/UserScript==
var menuIndex = 0;
(function() {
'use strict';
init();
})();
function init() {
var a = setInterval(() => {
var content = document.getElementsByClassName('article-content');
if(content){
window.clearInterval(a);
initSidebar();
}
}, 1000);
}
function initSidebar() {
let titles = $('.article-content').find('h1,h2,h3,h4,h5,h6');
console.log(titles.length)
if(titles.length === 0){
return;
}
let contentHeight = window.innerHeight;
let asideContent = '<aside id="sideMenu" style="position: fixed;padding: 0px 15px 20px 0px;top: 0;right: 0;margin-bottom:20px;background-color: #eee;background-color: #eee;z-index: 810;overflow: scroll;max-height:'+contentHeight+'px;min-height:'+contentHeight+'px;min-width:200px;max-width:300px;"><h2 style="padding-left:30px">目录<h2></aside>';
$('.book-content').prepend(asideContent);
$('#sideMenu').append('<ol id="menu_nav_ol" style="list-style:none;margin:0px;padding:0px;">');
titles.each(function(){
let tagName = $(this)[0].tagName.toLocaleLowerCase();
let content = $(this).text();
let newTagId =$(this).attr('id');
if(!$(this).attr('id')){
newTagId = 'id_'+menuIndex;
$(this).attr('id',newTagId);
menuIndex++;
}
if(newTagId !=='id_0')
appendMenuItem(tagName,newTagId,content);
});
$('#sideMenu').append('</ol>');
$('#menu_nav_ol li').on('click',function(){
let targetId = $(this).attr('class');
$(this).first().children("a").first().css('color', 'red');
$("#"+targetId)[0].scrollIntoView({behavior: "instant", block: "center", inline: "nearest"});
$('#menu_nav_ol').children().each(function(){
let otherId = $(this).attr('class');
if (targetId != otherId) {
$(this).first().children("a").first().css('color', 'black');
}
});
});
}
function appendMenuItem(tagName,id,content){
let paddingLeft = tagName.substring(1) * 20;
$('#menu_nav_ol').append('<li class="' + id +'" style="padding-left: '+ paddingLeft +'px;margin:10px 0"><a style="color:black;font-weight:bold">' + content + '</a></li>');
}
- 点击 文件--> 保存-会显示操作成功
- 刷新页面即可 刷新一次不成功 可以多刷新几次哦