Created
March 8, 2023 15:27
-
-
Save mimonelu/a08f1aeab49dc760a14a43047473643b to your computer and use it in GitHub Desktop.
読み上げブックマークレット
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:window.onmousemove=function(e){e.target.style.outline="2px #f00 solid";};window.onmouseout=function(e){e.target.style.outline="none";};window.onclick=function(e){var t=e.target.innerText,s=new SpeechSynthesisUtterance(t);console.log(t);s.lang="ja-JP";s.pitch=0.1;s.rate=0.1;speechSynthesis.speak(s);};void(0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment