Sankakucomplex old link replacer

Replaces the old sankakustatic links (Images) with the current sankakucomplex adresses

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

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

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          Sankakucomplex old link replacer
// @description   Replaces the old sankakustatic links (Images) with the current sankakucomplex adresses
// @include       http://www.sankakucomplex.com/*
// @version       1.0
// @grant         none
// @namespace https://greasyfork.org/users/7983
// ==/UserScript==



//document.body.innerHTML.replace(/sankakustatic.com/gi, 'sankakucomplex.com');

document.addEventListener("DOMContentLoaded", replaceLinks, false );

if( document.readyState === "complete" ) {
    replaceLinks();
}

function replaceLinks() {
    Array.forEach( document.links, function(a) {
        a.href = a.href.replace( /sankakustatic.com/gi, 'sankakucomplex.com' );
//		a.text = a.text.replace( /sankakustatic.com/gi, 'sankakucomplex.com' );
    });
}