RawGit Button for Github.com

add a RawGit button for Github.com

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name        RawGit Button for Github.com
// @namespace   oott123_raw_git_button_for_github
// @include     https://github.com/*
// @version     3
// @grant       none
// @description add a RawGit button for Github.com
// ==/UserScript==

document.addEventListener('pjax:complete', rawgitButton);
rawgitButton();

function rawgitButton() {
    var rawDom = document.querySelector('#raw-url');
    if (!rawDom) {
        return;
    }
    var url = rawDom.href.replace(/(([^\/]+\/){2})raw\//, (a, b) => b).replace(/^https:\/\/github\.com\//, 'https://rawgit.com/');
    var rawGitDom = document.createElement('a');
    rawGitDom.href = url;
    rawGitDom.textContent = 'RawGit';
    rawGitDom.className = 'btn btn-sm BtnGroup-item';
    rawGitDom.target = '_blank';
    rawDom.parentNode.insertBefore(rawGitDom, rawDom.nextSibling);
}