This scipt (simple) enables html5 on youtube by adding &html5=1 to the url. It takes no options.
当前为
// ==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/*
// @version 141023
//
// @namespace https://greasyfork.org/users/6280
// ==/UserScript==
var url = location.href;
var n = url.indexOf('html5');
if (n == -1)
location.href = url + '&html5=1'