マクロ実行デモ
マクロを実行する
// Permissions: console // Allow: https://cdn.jsdelivr.net/* // Env: version=1.0.0; Macro.log(`Hello from Sandbox! [${ENV.version}]`); Macro.log({ time: new Date().toLocaleTimeString(), status: "Success" }); Macro.main_log({ time: new Date().toLocaleTimeString(), status: "Success" }); const res = await fetch('https://cdn.jsdelivr.net/gh/canvas-table/canvas-table/README.md'); Macro.mdLog(res.body.pipeThrough(new TextDecoderStream())); const data = await Macro.input('テキスト入力', 'text'); Macro.log(data);
実行結果(ログ):