Forked from mimonelu/gist:a08f1aeab49dc760a14a43047473643b
Last active
March 23, 2024 10:03
-
-
Save harryfear/9a75d87dc18e43dc2f3f6c66adb6183b 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="en-UK";s.pitch=1;s.rate=0.999;speechSynthesis.speak(s);};void(0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment