Cepstral/Voiceforge Text Delimiter

Removes the 120-character limit from the Voiceforge and Ceptral TTS Demos

// ==UserScript==
// @name         Cepstral/Voiceforge Text Delimiter
// @description  Removes the 120-character limit from the Voiceforge and Ceptral TTS Demos
// @icon         http://www.voiceforge.com/favicon.ico
// @author       DipshitDickinson
// @match        http*://www.voiceforge.com/demo*
// @match        http*://www.cepstral.com/*/demos
// @run-at       document-idle
// @version      1
// @namespace    https://greasyfork.org/users/256625
// ==/UserScript==

// if at Cepstral's site, act approprately. otherwise, apply to Voiceforge.
if (window.location.href.indexOf("cepstral") > -1) {
    $('textarea#demo_text').unbind()}
else {
    $('#dtu').unbind()}