tommy
自己紹介
連絡先
メールアドレス: tommyt6073 at gmail.com
きまべんへの招待希望もこちらにお送りください
個人サイト
script.js // みんなで書き込む用のページをつくるスクリプト
scrapbox.PageMenu.addItem({
title: '今日のもくもくページ作成',
image: 'https://i.gyazo.com/00c6ce2d4659ab83b80b899ce52c204d.png',
onClick: () => {
const project = "kimaben";
const userName = "tommy";
const toDoubleDigits = function(num) {
num += "";
if (num.length === 1) {
num = "0" + num;
}
return num;
};
const date = new Date();
const yyyy = date.getFullYear();
const mm = toDoubleDigits(date.getMonth() + 1);
const dd = toDoubleDigits(date.getDate());
const hh = toDoubleDigits(date.getHours());
const MM = toDoubleDigits(date.getMinutes());
const content = "[*** やること宣言]%0A" +
`[${userName}.icon]%0A%20%0A%0A` +
"[*** 勉強中メモ]%0A" +
`[${userName}.icon]%0A%20%0A%0A` +
"[*** やったこと]%0A" +
`[${userName}.icon]%0A%20%0A%0A` +
"[" + yyyy + "-" + mm + "-" + dd + "] "+ "[日報]";
const title = yyyy + "-" + mm + "-" + dd;
window.open("https://scrapbox.io/" + project + "/" + title + "?body=" + content);
}
})