FastGit

GitHub Clone or download、releases 下载加速

Versione datata 06/05/2020. Vedi la nuova versione l'ultima versione.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         FastGit
// @version      0.4
// @description  GitHub Clone or download、releases 下载加速
// @author       Vhxubo
// @license      MIT
// @icon         https://github.githubassets.com/favicon.ico
// @homepage     https://gist.github.com/vhxubo/d67fbd5bb3b7308b2e3690ca58e12c12
// @namespace    https://gist.github.com/vhxubo/d67fbd5bb3b7308b2e3690ca58e12c12
// @match        https://github.com/*/*
// @grant        none
// @note         2020.05.06_V0.4 新增: zipProxy - zip 下载链接
// ==/UserScript==

(function () {
    'use strict';
    var gitProxy = 'https://hub.fastgit.org';
    var sshProxy = '[email protected]';
    var releaseProxy = 'https://release.fastgit.org';
    var zipProxy = 'https://download.fastgit.org';

    if (window.location.href.indexOf('releases') === -1) {
        var regex = /"((\/.*)+\.zip)"/;
        var domDownload = document.querySelector('span.d-flex');
        if (domDownload !== null) {
            var oldHtml = domDownload.outerHTML;
            var zipLink = gitProxy + regex.exec(oldHtml)[1];
            var outHtml = oldHtml
            .replace('Clone or download', 'FastGit')
            .replace(/https:\/\/github.com/g, gitProxy)
            .replace(regex, zipLink)
            .replace(/[email protected]/g, sshProxy)
            .replace('https%3A%2F%2Fgithub.com', 'https%3A%2F%2Fhub.fastgit.org');

            domDownload.insertAdjacentHTML('afterend', outHtml);
        }
    } else {
        var resDownload = document.querySelectorAll('.Box--condensed a');
        if (resDownload !== null) {
            var i;
            for (i = 0; i < resDownload.length; i++) {
                var resHref = resDownload[i].getAttribute('href');
                if(resHref.indexOf('.zip') === -1) {
                    resDownload[i].insertAdjacentHTML(
                        'afterend',
                        `<a style="cursor: pointer;" href="${
            releaseProxy + resHref
                        }">FastGit Download</a>`
                    );

                } else {
                    resDownload[i].insertAdjacentHTML(
                        'afterend',
                        `<a style="cursor: pointer;" href="${
            zipProxy + resHref
                        }">FastGit Download</a>`
                    );
                }
            }
        }
    }
})();