NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==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>';