Skip to content

Instantly share code, notes, and snippets.

@mimonelu
Created March 8, 2023 15:27
Show Gist options
  • Save mimonelu/a08f1aeab49dc760a14a43047473643b to your computer and use it in GitHub Desktop.
Save mimonelu/a08f1aeab49dc760a14a43047473643b 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="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