Greasy Fork

Greasy Fork is available in English.

GO官网文档目录

GO官网文档目录, 做了绝对定位处理

目前为 2022-07-10 提交的版本。查看 最新版本

// ==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
// ==/UserScript==
(() => {
  document.querySelectorAll('.unruled tr')[1].style.cssText = `position: fixed; top: 80px; left: 20px; width: 300px`;
})();