解除微软TTS试用时的 1000 字上限

解除微软TTS试用上限

// ==UserScript==
// @name         解除微软TTS试用时的 1000 字上限
// @namespace    mscststs
// @version      0.2
// @description  解除微软TTS试用上限
// @author       mscststs
// @license      ISC
// @match        *://azure.microsoft.com/zh-cn/products/cognitive-services/text-to-speech*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=microsoft.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    setInterval(()=>{
        try{
            const d = document.querySelector("#playbtn");
            d.attributes.removeNamedItem("disabled");
        }catch(e){
        }
    },1000)
})();