// ==UserScript== // @name GO官网文档目录 // @namespace http://tampermonkey.net/ // @version 0.1 // @description GO官网文档目录, 做了决定定位处理 // @author pogusanqian // @match https://golang.google.cn/doc/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @license MIT // @downloadURL none // ==/UserScript== (() => { document.querySelectorAll('.unruled tr')[1].style.cssText = `position: fixed; top: 80px; left: 20px; width: 300px`; })();