新規作成時に日付タグを挿入するUserScript
2021-09-29
07:37:16
検索欄に記入されている文字列をタイトルとして使う
script.jsimport {lightFormat} from "../date-fns.min.js/script.js";
setInterval(() => {
for (const button of document.getElementsByClassName("new-button")) {
const title = document.getElementsByClassName("form-control")?.[0]?.value;
const timestamp = `#${lightFormat(new Date(), "yyyy-MM-dd HH:mm:ss")}`;
button.href = `/${scrapbox.Project.name}/${title || "new"}?body=${encodeURIComponent([
"",
"",
timestamp,
].join("\n"))}`;
}
}, 1000);
console.log('The hrefs of "New Button" have been changed.');