NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Add video controls // @namespace http://tampermonkey.net/ // @version 0.1 // @description enable playback controls on gifv videos. // @author maniek // @include /\.gifv$/ // @grant none // ==/UserScript== /* jshint -W097 */ 'use strict'; setTimeout(function(){ var videos = document.getElementsByTagName('video'); for(var i=0; i<videos.length; ++i){ videos[i].setAttribute('controls', 'controls'); } }, 500);