9gag.com video controls on hover

Show video controls on mouse hover

// ==UserScript==
// @name           9gag.com video controls on hover
// @namespace      pl.srsbiz
// @description    Show video controls on mouse hover
// @include        https://9gag.com/*
// @grant          none
// @license        MIT
// @version        1.0.0
// ==/UserScript==

document.querySelector('body').addEventListener('mouseover', function(evt){
  let video = evt.target;
  if (video.tagName === "VIDEO") {
    video.setAttribute("controls", "controls");
  }; 
});