"eat my entire ass"
当前为
// ==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());
}
});