NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name HTML5 Mediasite // @namespace http://willprice.org/userscripts // @version 0.0.1 // @description Automatically append &usehtml5=true to mediasite URLs // @author willprice // @license MIT // @match https://*/Mediasite/Play/* // ==/UserScript== (function() { 'use strict'; if (!window.location.href.match(/usehtml5=true/)) { window.location.href += "&usehtml5=true"; } })();