// ==UserScript== // @author YuXianwen // @name Tapd 文档页面查看 // @namespace http://tampermonkey.net/ // @version 0.1.2 // @description tapd文档查看页面优化目录显示 // @match https://www.tapd.cn/59941941/documents/show/* // @icon https://www.google.com/s2/favicons?domain=tapd.cn // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... // 加载样式 var style = document.createElement("style"); style.type = "text/css"; var text = document.createTextNode(`.wiki-toc{ font-size: 14px; } .wiki-toc .category{ display:none} .wiki-toc .content div div { padding:6px 0; } .wiki-toc .content div div:hover{ background-color:#f5f2f2} `); style.appendChild(text); var head = document.getElementsByTagName("head")[0]; head.appendChild(style); console.log('init') $('#toggleCategory').click(); $('.detail-tab-ul').prepend('
  • 目录
  • ') var doc = $('.wiki-toc').clone() $('.wiki-toc').hide() var script=$('