ミルヒト
https://gyazo.com/f4b368f58e9dc2660e8b714e1f9d9711
由来は「見る人」
ネットウォッチャー
そのままだとよくある単語
様子見中
Xが怪しい動きをしているからアカウントだけ作ったけど、今のところギリギリ生きているから放置中
UserScriptは基本拾いもの
ありがたく使わせてもらっている
日付表示形式
code:script.js
scrapbox.TimeStamp.removeAllFormats()
scrapbox.TimeStamp.addFormat("#YYYY-MM-DD")
インデント削除 (アウトライナーから)
code: script.js
scrapbox.PopupMenu.addButton({
title: 'インデント削除',
onClick: text => {
text = text.split(/\n/).map(line => line.normalize().replace(/\s{4}/g,' ')).join('\n');
return text;
}
})
選択した文字列へ太字マーカー
code:script.js
// 選択した文字列にマーカー
scrapbox.PopupMenu.addButton({
title: 'マーカー',
onClick: text => [[${text}]]
})
code:script.js
scrapbox.PageMenu.addMenu({
title: '末尾',
onClick: () => {
$("html,body").animate({scrollTop:$('.related-page-sort-menu').offset().top});
}
})
code:script.js
scrapbox.PopupMenu.addButton({
title: 'escape',
onClick: (str) => (
// リンクを全角に
str.replace(/(\|\)/g, function(match) { return match === '[' ? '[' : ']';
})
// hashtagを全角に
.replace(/#/g, '#')
)
});
()ではなく全角の[]にするようにカスタマイズ
リンク以外でも使い道があるので
code:script.js
import { mount } from "../../miruyomukaku/ScrapBubble/mod.js";
if (!/mobile/i.test(navigator.userAgent)) {
mount();
}