script.js$('head > link[rel=icon]').attr('href','/api/pages/chibi/chibi/icon');
// 選択した文字列を強調
scrapbox.PopupMenu.addButton({
title: '強調',
onClick: text => `[! ${text}]`
})
// 選択した文字列にマーカー
scrapbox.PopupMenu.addButton({
title: 'マーカー',
onClick: text => `[[${text}]]`
})
// 選択した文字列を大きくする
scrapbox.PopupMenu.addButton({
title: '大',
onClick: text => `[*** ${text}]`
})
import '/api/code/shokai/ページの見出しを作るUserScript/script.js'
style.css/* カーソルの幅と色替え */
.cursor { width: 3px; background-color: rgba(0,0,0,.6) }
style.css/* アイコンサイズを大きくする */
.line img.icon { height: 2.0em }