Advertisement
Guest User

Roumenuv Gifnik Show Controls

a guest
Apr 9th, 2021
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name        Roumenuv Gifnik Show Controls
  3. // @namespace   Violentmonkey Scripts
  4. // @match       https://www.rouming.cz/roumingGIF*
  5. // @grant       none
  6. // @version     1.0
  7. // @description Show controls for webms and mp4s in Roumenův Gifník
  8. // ==/UserScript==
  9.  
  10. document.querySelectorAll("video").forEach(v => {
  11.   v.setAttribute("controls","controls")
  12. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement