📝 twitterのスレッドを転記したい

podhmo
·

とりあえずdevtoolでこれを実行すればクリップボードに入る。

```js

let text = Array.from($$("main article [data-testid=tweetText]")).map((x) => x.textContent).join("\n\n"); copy(text)

```

navigator.clipboard.writeTextの方が良いかも?

https://podhmo.github.io/ui/clipboard/