// ==UserScript== // @name GitHub to DeepWiki // @namespace Nexmoe // @match https://github.com/*/* // @grant none // @version 1.0 // @author Nexmoe // @description One click jump from GitHub to DeepWiki // @downloadURL none // ==/UserScript== function run() { const urlx = new URL(window.location); const selector = '.about-margin .BorderGrid-cell .hide-sm.hide-md'; const targetElement = document.querySelector(selector); if (!targetElement) return; targetElement.insertAdjacentHTML('afterend', `
`); } run();