TTS

"eat my entire ass"

目前為 2015-05-01 提交的版本,檢視 最新版本

// ==UserScript==
// @name         TTS
// @namespace    http://msparp.com/
// @version      0.1
// @description  "eat my entire ass"
// @author       CR
// @match        http://*.msparp.com/chat/*
// @grant        none
// ==/UserScript==

$('#conversation').bind('DOMNodeInserted DOMNodeRemoved DOMSubTreeModified', function() {
    if (event.target.nodeName == "P") {
        var text = $('#conversation > p:last-child').text();
        text = text.substring(text.indexOf(":") + 1);
        speechSynthesis.speak(new SpeechSynthesisUtterance(text));
    } else {
        console.log($('#conversation > p:last-child').text());
    }
});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址