page-menu-text-to-speach
import
dependencies
code:script.js
import { unlink } from '../utils/script.js'
import { speachText } from '../speech-text/script.js'
scrapbox.PageMenu.addMenu({
title: 'Listen',
onClick: () => {
const selectedText = unlink(window.getSelection().toString())
const text = selectedText || scrapbox.Page.title
speachText(text)
},
})
https://gyazo.com/2a2166f5c4b1467e2a46697cc334bba9