URBAN420NETWORK

TTS Downloader

Dec 1st, 2016
358
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Acapela-Group Downloader
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  read the TOS!!
  6. // @author       You
  7. // @match        http://www.acapela-group.com/demo-tts/DemoHTML5Form_V2.php
  8. // @grant        none
  9. // @run-at       document-idle
  10. // ==/UserScript==
  11.  
  12. (function() {
  13.     'use strict';
  14.     setTimeout( function() {
  15.         document.getElementById('agreeterms').checked = true;
  16.         document.getElementById('listen').outerHTML = '<button type="submit" name="SendToVaaS" id="listen">listen!</button>';
  17.         $("#report-demo").html('<a href="' + $("#jp_audio_0").attr('src') + '" download>Download</a>');
  18.     }, 100);
  19. })();
Add Comment
Please, Sign In to add comment