Add GitHack Links To GitHub Files

12/13/2023, 1:18:04 AM

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name        Add GitHack Links To GitHub Files
// @namespace   Violentmonkey Scripts
// @match       https://github.com/*
// @version     0.0.3
// @description 12/13/2023, 1:18:04 AM
// @grant       GM_addStyle
// @license     MIT
// ==/UserScript==

const cssText = `

    @keyframes rawButtonAppended {
        from{
            background-position-x: 1px;
        }
        to{
            background-position-x: 2px;
        }
    }
    [data-testid="raw-button"]:not([ls4yu]) {
        animation: rawButtonAppended 1ms linear 0s 1 normal forwards;
    }


`;
function f101(rawButton) {
  rawButton.setAttribute('ls4yu', '');
  const newButton = rawButton.cloneNode(true);
  newButton.innerHTML = newButton.innerHTML.replace('Raw', 'GitHack');
  const newURL = newButton.href.replace(/^https\:\/\/github.com\/([-\w]+)\/([-\w.]+)\/(blob|raw)\/([-\w\/\.]+)$/g,
    (_, u, r, x1, k) => `https://raw.githack.com/${u}/${r}/${k}`
  );
  newButton.href = newURL;
  rawButton.parentNode.insertBefore(newButton, rawButton.nextSibling);
}


document.addEventListener('animationstart', (evt) => {
  const animationName = evt.animationName;
  if (!animationName) return;
  if (animationName === 'rawButtonAppended') {
    f101(evt.target);
  }
}, { passive: true, capture: true });

GM_addStyle(cssText);