go
Hey there! I'm a daily writer and ornithologist :) The icon is my sketch on a male coot, one of my favorit birds living in marshes and reed beds standing at lake shores.
Write on!
User scripts
Time stamp
script.jsscrapbox.TimeStamp.addFormat('HH:mm on MMMM D, YYYY')
Change doulbe bytes characters to single byte ones
script.jsscrapbox.PopupMenu.addButton({
title: 'half-width',
onClick: text => {
text = text.replace(/[A-Za-z0-9]/g, (s) => {
return String.fromCharCode(s.charCodeAt(0) - 65248);
});
//16進数の場合
text = text.replace(/[A-Za-z0-9]/g, (s) => {
return String.fromCharCode(s.charCodeAt(0) - 0xFEE0);
});
return text;
}
})
Delete blank lines
script.jsscrapbox.PopupMenu.addButton({
title: 'delete blank',
onClick: text => text.split(/\n/).filter(line => !line.match(/^\s*$/)).join('\n')
})
Random jump
index.html <a class="tool-btn dropdown-toggle" type="button" id="RandomJumpButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"><i class="fa fa-random"></i></a>