Wiki2wand

Redirect Wikipedia to Wikiwand.

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          Wiki2wand
// @version       1.2
// @run-at        document-start
// @description   Redirect Wikipedia to Wikiwand.
// @include       http://*.wikipedia.org/wiki/*
// @include       https://*.wikipedia.org/wiki/*
// @include       http://*.wiktionary.org/wiki/*
// @include       https://*.wiktionary.org/wiki/*
// @include       http://*.wikiquote.org/wiki/*
// @include       https://*.wikiquote.org/wiki/*
// @exclude       http://*.wikipedia.org/wiki/*?oldformat=true
// @exclude       https://*.wikipedia.org/wiki/*?oldformat=true
// @exclude       http://*.wiktionary.org/wiki/*?oldformat=true
// @exclude       https://*.wiktionary.org/wiki/*?oldformat=true
// @exclude       http://*.wikiquote.org/wiki/*?oldformat=true
// @exclude       https://*.wikiquote.org/wiki/*?oldformat=true
// @author        ylusid
// @namespace     https://greasyfork.org/en/users/1355994-ylusid
// @grant         none
// @license       MIT
// ==/UserScript==

var theurl = document.URL;
var parser = /^https?:\/\/(\w+)\.(m\.)?(\w+)\.org\/wiki\/([^\?#]+)(\?[^#]+)?(#.+)?/;

domain = theurl.match(parser)[3];
var wikiwand_app = "articles";
if (domain == "wiktionary") {
    wikiwand_app = "dictionary";
} else if (domain == "wikiquote") {
    wikiwand_app = "quotes";
}

window.location.replace(theurl.replace(parser, 'https://www.wikiwand.com/$1/' + wikiwand_app + '/$4$6'))