帆软知识库
// ==UserScript== // @name 知识库目录增强 // @namespace armstrong@fanruan.com // @version 1.0.1 // @description 帆软知识库 // @author Armstrong // @include http://knowledge.fanruan.com/* // @grant none // ==/UserScript== (function() { 'use strict'; // Your code here... setTimeout(function(){ $('.full-list').children().children().mouseover(function(){var txt=$(this).text();$(this).attr("title",txt)}) },2000) })();