いろいろ問題あるし動作する場所も限られちゃうけどこんな感じのユーザコマンドとか

```
// スレ・スレタブ
'tab.open.l10': {
label: '外部ブラウザで最新10レスを開く',
type: 'emit',
attach: [ 'tab.thread', 'res' ],
command: 'uri:open-external',
params: [
'${OBJECT.location}l10',
],
},
// スレ上のURL(/で終わる2ch互換URLでないと誤動作する)
'open.l10': {
label: '外部ブラウザで最新10レスを開く',
type: 'emit',
attach: 'url',
command: 'uri:open-external',
params: [
'${TEXT}l10',
],
},
```