Guest User

Untitled

a guest
Sep 16th, 2020
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  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