Skip to content

Instantly share code, notes, and snippets.

@Linda-chan
Last active April 11, 2025 10:53
Show Gist options
  • Select an option

  • Save Linda-chan/96250c1b681cc3a9425cf9a311a88c55 to your computer and use it in GitHub Desktop.

Select an option

Save Linda-chan/96250c1b681cc3a9425cf9a311a88c55 to your computer and use it in GitHub Desktop.
dumpData("Some Data", "nao.txt");
//=============================================================
// Based on Yodayo Tavern Chat Downloader by Holly...
//=============================================================
function dumpData(data, fileName) {
var blob = new Blob([data], {type: "text/plain"});
var url = URL.createObjectURL(blob);
initiateDownload(url, fileName);
URL.revokeObjectURL(url);
//===========================================================
function initiateDownload(path, fileName) {
var anchor = document.createElement('a');
anchor.href = path;
anchor.download = fileName;
document.body.appendChild(anchor);
anchor.click();
document.body.removeChild(anchor);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment