Alt Speak Selection

Press Alt to Speak currently Selection.

目前為 2022-09-06 提交的版本,檢視 最新版本

// ==UserScript==
// @name            Alt Speak Selection
// @description     Press Alt to Speak currently Selection.
// @namespace       https://userscript.snomiao.com/
// @version         0.1.0
// @author          [email protected]
// @match           *://*/*
// @grant           none
// ==/UserScript==

window.addEventListener('keyup', (e)=>
    e.key ==='Alt' && (speechSynthesis.cancel(), speechSynthesis.speak(new SpeechSynthesisUtterance(window.getSelection().toString())))
)

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址