环境:
MacBook + Safari浏览器
1. 搜索 tampermonkey
2. 下载 tampermonkey
下载完成后如图所示,有一个小图标
图标
3. 点击图标--->添加新脚本
添加新脚本会出现以下画面
编辑脚本页面
4. 将以下代码复制粘贴进去替换掉里面的内容
// ==UserScript==
// @name 自动生成简书目录
// @namespace https://www.jianshu.com/p/3f07f8f6159f
// @version 1.0
// @author 佳节明月
// @match http://www.jianshu.com/p/*
// @match https://www.jianshu.com/p/*
// @grant none
// ==/UserScript==
var menuIndex = 0; //初始化标题索引
// 在侧边栏中添加目录项
function appendMenuItem(tagName,id,content) {
console.log(tagName+" "+tagName.substring(1));
let paddingLeft = tagName.substring(1) * 20; //添加标题缩进
$('#menu_nav_ol').append('<li class="' + id + '" style="padding-left: '+ paddingLeft +'px;"><b>' + content + '</b></li>');
}
(function() {
'use strict';
// 使文章区域宽度适配屏幕
let wider = $('.note').width() - 400;
let oriWidth = $('.post').width();
console.log(wider);
console.log(oriWidth);
if (wider < oriWidth) {
wider = oriWidth;
}
// 适配宽度
$('.post').width(wider);
// 保存标题元素
let titles = $('body').find('h1,h2,h3,h4,h5,h6');
if(titles.length === 0) {
return;
}
// 将文章内容右移
$('.post').css('padding-left','200px');
// 在 body 标签内部添加 aside 侧边栏,用于显示文档目录
let contentHeight = window.innerHeight; //设置目录高度
let asideContent = '<aside id="sideMenu" style="position: fixed;padding: 80px 15px 20px 15px;top: 0;left: 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:350px;max-width:350px;"><h2>目录<h2></aside>';
$('.show-content').prepend(asideContent);
$('#sideMenu').append('<ol id="menu_nav_ol" style="list-style:none;margin:0px;padding:0px;">');// 不显示 li 项前面默认的点标志, 也不使用默认缩进
// 遍历文章中的所有标题行, 按需添加id值, 并增加记录到目录列表中
titles.each(function() {
let tagName = $(this)[0].tagName.toLocaleLowerCase();
let content = $(this).text();
// 若标题的id不存在,则使用新id
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>');
// 绑定目录li点击事件,点击时跳转到对应的位置
$('#menu_nav_ol li').on('click',function() {
let targetId = $(this).attr('class');
$("#"+targetId)[0].scrollIntoView(true);
});
})();
保存退出并启用,当你浏览简书文章时会出现以下画面
浏览简书页面
这代表什么呢?代表你成功了啊!
注:
1. 脚本代码可以根据自己的喜好调整布局,自己喜欢就好;
2. 图标右上的1⃣️,代表有一个脚本正在启用,
如果没有,打开管理面板,启用一下,再刷新即可;
3. 你也可以尝试用一下其他脚本,油猴(tampermonkey)大多都支持。
网友评论