Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save harryfear/9a75d87dc18e43dc2f3f6c66adb6183b to your computer and use it in GitHub Desktop.
Save harryfear/9a75d87dc18e43dc2f3f6c66adb6183b to your computer and use it in GitHub Desktop.
読み上げブックマークレット
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