streamtape player download

Downloading from streamtape

  1. // ==UserScript==
  2. // @name streamtape player download
  3. // @namespace https://greatest.deepsurf.us/en/users/175554-reissfeld
  4. // @version 1.0
  5. // @description Downloading from streamtape
  6. // @author Reissfeld
  7. // @match https://streamtape.com/*
  8. // @icon https://streamtape.com/favicon.ico
  9. // @run-at document-end
  10. // @grant GM_openInTab
  11. // @license GNU-V3.0
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16. var video = document.querySelector('#mainvideo')
  17. setTimeout(function(){
  18. GM_openInTab (video.src);
  19. },5000)
  20. })();