Greasy Fork

给java官方文档title加锚点链接

给java 官方文档title加链接,以便分享

// ==UserScript==
// @name         给java官方文档title加锚点链接
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  给java 官方文档title加链接,以便分享
// @author       yongfa365 https://www.github.com/yongfa365/
// @match        https://docs.oracle.com/javase/*
// @icon         https://docs.oracle.com/favicon.ico
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    document.querySelectorAll(".title >a").forEach(p=>{p.innerText="§";p.href="#"+p.name})
})();