// ==UserScript== // @name 用Sourcegraph浏览Github项目 // @author billypon // @description 浏览github项目的时候添加sourcegraph的链接 // @version 1.0.0 // @namespace http://www.canaansky.com/ // @match https://github.com/*/* // @run-at document-idle // @downloadURL none // ==/UserScript== const actions = document.querySelector('.pagehead-actions'); if (actions) { const link = document.createElement('a'); link.className = 'btn btn-sm'; link.href = `https://sourcegraph.com/github.com${ location.pathname }`; link.innerHTML = ''; const action = document.createElement('li'); action.append(link); actions.prepend(action); }