m_morino
https://lh3.googleusercontent.com/-TGnCRGakiSE/AAAAAAAAAAI/AAAAAAAAACU/oQTPBAb5rlE/photo.jpg
# 以下UserScript。
code:script.js
// 選択した文字列にマーカー
scrapbox.PopupMenu.addButton({
title: 'Marker+',
onClick: text => [[${text}]]
})
code:script.js
scrapbox.PopupMenu.addButton({
title: 'Coment',
onClick: text => [# ${text}]
})
ポップアップにコメントアウト追加
code:style.css
/* カーソルの幅と色替え */
.cursor { width: 3px; background-color: rgba(0,0,0,.6) }
code:style.css
@keyframes blink {
0% {opacity: 0}
49%{opacity: 0}
50%{opacity: 1}
}
.cursor { animation: blink 1s infinite }