您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
golink是用于无感跳转到掘金等无法直接跳转的外链,免去手动跳转的烦恼。
// ==UserScript== // @name golink:掘金去除手动跳转 // @name:zh-TW golink:掘金去除手動跳轉 // @namespace https://gf.qytechs.cn/zh-CN/users/836376-codeniu // @version 0.0.2 // @description golink是用于无感跳转到掘金等无法直接跳转的外链,免去手动跳转的烦恼。 // @description:zh-tw golink是用於無感跳轉掘金等無法直接跳轉的外鏈,免去手動跳轉的煩惱。 // @author codeniu // @match *://*.juejin.cn/* // @grant unsafeWindow // @grant GM_log // @grant GM_addStyle // @grant GM_setValue // @grant GM_getValue // @grant GM_deleteValue // @grant GM_listValues // @grant GM_addValueChangeListener // @grant GM_removeValueChangeListener // @grant GM_getResourceText // @grant GM_getResourceURL // @grant GM_openInTab // @grant GM_xmlhttpRequest // @grant GM_notification // @connect 127.0.0.1 // @connect localhost // @run-at document-end // ==/UserScript== (function() { 'use strict' setTimeout(() => { let link = document.getElementsByClassName('link-content')[0].getElementsByTagName('p')[0].textContent if (link) { window.location.href = link return } },20) })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址