// ==UserScript== // @name gitlab download // @namespace http://tampermonkey.net/ // @version 0.1 // @description 在gitlab中使用github desktop下载代码 // @author Fog3211 // @match *://gitlab.com/* // @icon https://about.gitlab.com/ico/favicon.ico // @grant none // ==/UserScript== (function () { 'use strict'; const gitCloneContainer = document.querySelectorAll('.git-clone-holder')[0] if (gitCloneContainer) { const GitLinkLists = [...gitCloneContainer.querySelectorAll('.input-group-btn .dropdown-menu li a')] if (GitLinkLists.length >= 2) { const targetLink = `x-github-client://openRepo/${GitLinkLists[1].href.replace('.git','')}` gitCloneContainer.innerHTML += `
` } } })();