santa
https://lh3.googleusercontent.com/pw/AP1GczOXt-NIaH-nIbOOzksJU3iw452neGy72llzQcXkNsCZjuFHnz1V3Kz7Vv7HDmp8rt8lbJOi0Bgo-NVqxgcFVmGOBgmJXZqgt5-YN2tIyi33Pl92OdBGzL-rUUtCg6BfJgfGOkWT3HgbLvfQMgy6HD8KQQ=w1308-h1308-s-no-gm?authuser=0#.jpg
code:script.js
// import image from google photo(image address)
scrapbox.PopupMenu.addButton({
title: 'gphoto',
onClick: text => {
text = text.split(/\n/).map(line => line.replace(/^(.+)$/g,'$1#.jpg')).join('\n') return text;
}
});
// import image from google drive(share link)
scrapbox.PopupMenu.addButton({
title: 'gdrive_img',
onClick: text => {
}
});
// import video from google drive(share link)
scrapbox.PopupMenu.addButton({
title: 'gdrive_mov',
onClick: text => {
}
});
// counter of chars and words
scrapbox.PopupMenu.addButton({
title: function (text) {
const chars = text.replace(/\r\n/g, '').length const words = text.trim().split(/\r\n\s+/).length return ${chars}c ${words}w
},
onClick: () => null
})