Add git clone for github

给github克隆地址添加克隆命令

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Add git clone for github
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  给github克隆地址添加克隆命令
// @author       Colin Zeb
// @match        https://github.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var clonebtnselector = "#js-repo-pjax-container > div.container.new-discussion-timeline.experiment-repo-nav > div.repository-content > div.file-navigation.in-mid-page > div.select-menu.get-repo-select-menu.js-menu-container.float-right.select-menu-modal-right > button";
    var clonedomselector = '.form-control.input-monospace.input-sm.js-zeroclipboard-target.js-url-field';
    var toggleselector = '.btn-link.btn-change-protocol.js-toggler-target.float-right';
    var btn = document.querySelector(clonebtnselector);
    if (btn) {
        btn.addEventListener('click', function () {
            setTimeout(function () {
                var res = document.querySelectorAll(clonedomselector);
                var toggle = document.querySelectorAll(toggleselector);
                var clonedom = res;
                var addfunck = function (item) {
                    item.value = "git clone " + item.value;
                };
                //clonedom.value = "git clone " + clonedom.value;
                //console.log('a');
                //var changefunc = function () {
                //    setTimeout(function () {
                //        if (!clonedom.value.startsWith('git clone')) {
                //            clonedom.value = "git clone " + clonedom.value;
                //        }

                //    }, 100);
                //};
                //toggle[0].addEventListener("click", changefunc);
                //toggle[1].addEventListener("click", changefunc);
                addfunck(clonedom[0]);
                addfunck(clonedom[1]);
            });
        });
    }


})();