Wiki2wand

Redirect Wikipedia to Wikiwand.

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

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

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          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'))