Firefoxだとscrapboxの選択文字列をwindow.getSelection().toString()で取得できない
以前対応していたという可能性も考えたが、上記のページの更新日時が今年の8月だったので、その線はなさそうだった
Chrome for Androidも対応していないもよう
無理矢理Reactの中身を取り出せばいけそう
code:js
{
const selections = document.querySelector(".selections");
if(selections){
const reactKey = Object.keys(selections).find(key => key.startsWith("__reactInternalInstance"));
console.log(selectionsreactKey.return.memoizedProps.range) }
}