Download mechanism doesn't work.
// https://stackoverflow.com/questions/13405129/create-and-save-a-file-with-javascript/53864791#53864791
const a = document.createElement("a");
a.href = url;
// FIX: For now just appending epoch timestamp.
a.download = `${namePrefix}-dump-${Date.now()}.json`;
document.body.appendChild(a);
a.click();
setTimeout(() => { document.body.removeChild(a); window.URL.revokeObjectURL(url); }, 0);