willprice / HTML5 Mediasite

// ==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";
     }
})();