Greasy Fork is available in English.
笔趣阁 朗读
当前为
// ==UserScript==
// @name 笔趣阁 biqukan 小说朗读
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 笔趣阁 朗读
// @author sungf
// @compatible html5
// @include https://www.biqukan.com/*/*
// ==/UserScript==
(function() {
const speechSynthesis = message => {
const msg = new SpeechSynthesisUtterance(message);
msg.voice = window.speechSynthesis.getVoices()[0];
msg.onend = ()=> window.speechSynthesis.pending || document.getElementsByClassName('page_chapter')[0].children[0].children[2].children[0].click();
window.speechSynthesis.speak(msg);
};
// for(let i=0;i<document.getElementsByClassName("read-content")[0].children.length;i++){
speechSynthesis(document.getElementById("content").innerText);
// }
})();