Limegreen external links

Highlight all external links in lime green, works on dynamically added content too.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Limegreen external links
// @description  Highlight all external links in lime green, works on dynamically added content too.
// @include      *
// @namespace    wOxxOm.scripts
// @author       wOxxOm
// @version      1.0.2
// @license      MIT License
// @grant        GM_addStyle
// @run-at       document-start
// @require      https://greasyfork.org/scripts/12228/code/setMutationHandler.js
// ==/UserScript==

GM_addStyle(
	'a.external_link_wOxxOm:link {background-color: rgba(133,255,0,0.7) !important; color:black!important}'+
	'a.external_link_wOxxOm:visited {background-color: rgba(191,255,0,0.7) !important; color:black!important}'
);
setMutationHandler(document, 'a[href*="//"]', function(nodes) {
	var hostname = new URL(location.href).hostname;
	nodes.forEach(function(n) {
		if (new URL(n.href).hostname != hostname)
			n.classList.add('external_link_wOxxOm');
	});
	return true;
});