tvkanters / Imgur gifv as webm

// ==UserScript==
// @name        Imgur gifv as webm
// @namespace   http://tvkdevelopment.com
// @include     http://i.imgur.com/*.gifv
// @include     https://i.imgur.com/*.gifv
// @description Shows Imgur "gifv" files as the webms that they are
// @version     2
// @grant       none
// ==/UserScript==

document.body.style.textAlign = 'center';
document.body.innerHTML = '<video controls loop autoplay style="position:relative;top:50%;transform:translateY(-50%);">\
  <source src="' + window.location.href.replace(".gifv", ".mp4") + '" type="video/webm">\
</video>';