generated at
おみくじMenu

UserScriptPage Menuを拡張する例


script.js
const choice = (arr) => arr[Math.floor(Math.random()*arr.length)] scrapbox.PageMenu.addMenu({ title: 'おみくじ', icon: 'fas fa-torii-gate' }) scrapbox.PageMenu('おみくじ').addItem({ title: () => choice(['大吉', '吉', '中吉', '小吉', '凶', '大凶']), onClick: () => null })

addItemのtitleにstringを返す関数を渡すと、Menu開閉毎に実行してくれる