Skip to content

Instantly share code, notes, and snippets.

@harryfear
harryfear / Click to read aloud (en-US).bookmarklet.js
Last active March 23, 2024 10:03 — forked from mimonelu/gist:a08f1aeab49dc760a14a43047473643b
読み上げブックマークレット
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);