参考:https://qiita.com/howdy39/items/c22c2cfafab88fa73d15
$('img') // DOM
document.querySelector('img') // DOM
$$('img') // Array
document.querySelectorAll('img') // NodeList
copy($('title')) // 実行するとクリップボードにコピーされる
dir($(img)) // オブジェクトのプロパティを返却
HTMLからJSONデータを抜き出す
// .list li a の テキストとhrefをjsonでコピーする
copy( $$('.list li a').map(e => ({textContent :e.textContent, href: e.href})) )
CSVでコピーする
// .list li a の テキストとhrefをcsvでコピーする
copy( $$('.list li a').map(e => [e.textContent, e.href].join(',')).join('\n') )