wikia youtube

Automatically redirect Wikia video pages to the appropriate Youtube link.

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        wikia youtube
// @namespace   wikia-monobook
// @description:en Automatically redirect Wikia video pages to the appropriate Youtube link.
// @include     *.wikia.com/wiki/File:*
// @version     1
// @grant       none
// @run-at      document-end
// @description Automatically redirect Wikia video pages to the appropriate Youtube link.
// ==/UserScript==
// @run-at      document-start
// @run-at      document-end
// @run-at      document-idle


if (window.playerParams && window.playerParams.jsParams && window.playerParams.jsParams.videoId) {
	location.replace('https://youtu.be/' + window.playerParams.jsParams.videoId);
}