Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Acapela-Group Downloader
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description read the TOS!!
- // @author You
- // @match http://www.acapela-group.com/demo-tts/DemoHTML5Form_V2.php
- // @grant none
- // @run-at document-idle
- // ==/UserScript==
- (function() {
- 'use strict';
- setTimeout( function() {
- document.getElementById('agreeterms').checked = true;
- document.getElementById('listen').outerHTML = '<button type="submit" name="SendToVaaS" id="listen">listen!</button>';
- $("#report-demo").html('<a href="' + $("#jp_audio_0").attr('src') + '" download>Download</a>');
- }, 100);
- })();
Add Comment
Please, Sign In to add comment