Greasy Fork

选中自动朗读

任意网页选中自动朗读

当前为 2023-07-21 提交的版本,查看 最新版本

// ==UserScript==
// @name         选中自动朗读
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  任意网页选中自动朗读
// @license     选中自动朗读
// @author       lgldlk
// @match        *://*/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=chrome.com
// @grant        none
// ==/UserScript==

(function () {
  'use strict';
  document.addEventListener('selectionchange', function () {
    let text = String(document.getSelection());
    if (!text.length) return;
    speechSynthesis.cancel();
    speechSynthesis.speak(new SpeechSynthesisUtterance(text));
  });
})();