Gist ‘.user.js’ EZ Install Link

This userscript will add an 'Install' link to all userscript files which end with .user.js by necessity on github and will replace the “raw” button.

Από την 01/10/2024. Δείτε την τελευταία έκδοση.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name			Gist ‘.user.js’ EZ Install Link
// @author			SijosxStudio
// @author              http://tinyurl.com/BuySijosxStudioCoffee
// @namespace		gist-.user.js-EZInstallLink
// @include			http://gist.github.com/*
// @version			1.2
// @license			GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html
// @description		This userscript will add an 'Install' link to all userscript files which end with .user.js by necessity on github and will replace the “raw” button.

// ==/UserScript==

(function(doc){
	var userscripts = doc.evaluate("//a[contains(substring(@href,string-length(@href)-9),'.user.js') and text()='raw']",doc,null,6,null),
		userscript,raw;
	for(var i=userscripts.snapshotLength-1;i>-1;i--){
		userscript = userscripts.snapshotItem(i);
		userscript.innerHTML = 'install';
		raw = userscript.cloneNode(false);
		raw.innerHTML = 'raw';
		raw.href = "view-source:" + raw.href;
		userscript.parentNode.insertBefore(raw,userscript);
	}
})(document);