import { initializeSettings } from "./settings.js"; Hooks.on('init', async function () { initializeSettings(); }); Hooks.on("getActorSheetHeaderButtons", (app, buttons) => { let theatreButtons = []; theatreButtons.push({ label: "Archive", class: "send-to-archive", icon: "fas fa-mask", onclick: (ev) => { console.log("ARCHIVE ME!"); } }); buttons.unshift(...theatreButtons); });