Guest User

streamable download button

a guest
Aug 19th, 2020
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name        streamable download button
  3. // @namespace   Violentmonkey Scripts
  4. // @match       https://streamable.com/*
  5. // @grant       none
  6. // @version     1.0
  7. // @author      anon
  8. // ==/UserScript==
  9.  
  10. (() => {
  11.   const button = document.createElement("button");
  12.   button.textContent = "Download";
  13.   button.onclick = () => {
  14.     window.location = document.getElementsByTagName("video")[0].src;
  15.   }
  16.   document.getElementById("video-footer").appendChild(button);
  17. })();
Add Comment
Please, Sign In to add comment