Advertisement
AHOHNMYC

Vocaroo without Flash

Sep 25th, 2016
508
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name        Vocaroo without Flash
  3. // @namespace   2ch relative
  4. // @include     http://vocaroo.com/i/*
  5. // @version     v0.0.1
  6. // @grant       none
  7. // ==/UserScript==
  8.  
  9. var audio = document.createElement('audio');
  10. audio.controls = 'true';
  11. audio.autoplay = 'true';
  12. audio.src = idDownloadAsMp3Link.href;
  13. idPlayerBox.innerHTML = '';
  14. idPlayerBox.appendChild(audio).focus()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement