script.jsexport function downloadObject(object) {
// download dataを作成
const blob = new Blob([JSON.stringify(object)], {type: 'octet/stream'});
// download linkを生成
const url = URL.createObjectURL(blob);
// 隠しa要素を使ってdownloadする
const a = document.createElement('a');
a.href = url;
a.download = 'import.json';
a.style.display = 'none';
// downloadを実行
a.click();
// 後始末
URL.revokeObjectURL(url);
}