阮一锋科技爱好者周刊公众号引用链接优化

将链接地址直接关联到引用的小数字标签上,点击数字即可跳转引用链接

// ==UserScript==
// @name         阮一锋科技爱好者周刊公众号引用链接优化
// @namespace    https://gf.qytechs.cn
// @version      1.0
// @description  将链接地址直接关联到引用的小数字标签上,点击数字即可跳转引用链接
// @author       kongwe
// @match        https://mp.weixin.qq.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=qq.com
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    let author = document.querySelector("meta[name='author']")
    if(author.getAttribute("content") == '阮一峰'){
        let refs = document.querySelectorAll("span>sup")
        let links = document.querySelectorAll("i>span")
        for(let i=0;i<refs.length;i++){
            let a = document.createElement("a")
            a.innerText = refs[i].innerText
            a.setAttribute("href", links[i].innerText)
            refs[i].innerText = ''
            refs[i].appendChild(a)
        }
    }
    // Your code here...
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址