Github Download file

Adds Github file download/Raw link

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

You will need to install an extension such as Tampermonkey to install this script.

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Github Download file
// @namespace    drakulis.pl
// @version      1.1
// @description  Adds Github file download/Raw link
// @author       Drakulis
// @match        https://github.com/*
// @require      http://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js
// @grant        none
// ==/UserScript==

(function($) {

    function addIcons() {
        const $head = $("table.files thead tr");
        if ($head.find("> .download-icon").length > 0){
            return;
        }

        $head.append($("<th class='download-icon'></th>"))
        $(".up-tree").append($("<td class='download-icon'></td>"));

        $(".js-navigation-item .content a").each(function() {
            const $this=$(this);
            const $item = $this.closest(".js-navigation-item");
            const $iconCol=$item.find(".icon");
            const $downloadCol = $("<td class='download-icon' style='width: 34px'></td>");

            if ($iconCol.find(".octicon-file").length > 0) {
                const href = $this.attr("href");
                const $downloadIcon=$('<svg class="octicon octicon-file" viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M9 12h2l-3 3-3-3h2V7h2v5zm3-8c0-.44-.91-3-4.5-3C5.08 1 3 2.92 3 5 1.02 5 0 6.52 0 8c0 1.53 1 3 3 3h3V9.7H3C1.38 9.7 1.3 8.28 1.3 8c0-.17.05-1.7 1.7-1.7h1.3V5c0-1.39 1.56-2.7 3.2-2.7 2.55 0 3.13 1.55 3.2 1.8v1.2H12c.81 0 2.7.22 2.7 2.2 0 2.09-2.25 2.2-2.7 2.2h-2V11h2c2.08 0 4-1.16 4-3.5C16 5.06 14.08 4 12 4z"></path></svg>');
                const downloadUrl = "https://raw.githubusercontent.com" + href.replace("/blob", "");
                const $downloadNode = $("<a href='" + downloadUrl + "' style='color: rgba(3,47,98,.65)' title='Raw / Download'></a>");
                $downloadNode.append($downloadIcon);
                $downloadCol.append($downloadNode);
            }
            $item.append($downloadCol);
        });
    }

    $('body').on('DOMSubtreeModified', '.js-navigation-container ', function(){
        addIcons();
    });

    addIcons();
})(jQuery);