Simple Youtube HTML5 enabler

This scipt (simple) enables html5 on youtube by adding &html5=1 to the url. It takes no options.

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        Simple Youtube HTML5 enabler
// @author      Gerhard Sliwa
// @description This scipt (simple) enables html5 on youtube by adding &html5=1 to the url. It takes no options.
// @include     http://www.youtube.com/*
// @include     https://www.youtube.com/*
// @grant       none
// @version     141023
// 
// @namespace https://greasyfork.org/users/6280
// ==/UserScript==
var url = location.href;
var n = url.indexOf('html5');
var m = url.indexOf('user');
var o = url.indexOf('channel');
if (n == -1 && m == -1 && o == -1)
  location.href = url + '&html5=1'