Skip to content

Instantly share code, notes, and snippets.

@chaichontat
Last active June 27, 2024 16:04
Show Gist options
  • Select an option

  • Save chaichontat/278ec0771c74b3302abe81d3b7837735 to your computer and use it in GitHub Desktop.

Select an option

Save chaichontat/278ec0771c74b3302abe81d3b7837735 to your computer and use it in GitHub Desktop.
Extract conversation from Anthropic console
console.log(
JSON.stringify(
Array.from(document.querySelectorAll('div[data-testid="editor"]')).reduce(
(acc, container) => {
acc[container.parentNode.getAttribute("data-testid")] = container.innerText;
return acc;
},
{}
),
null,
2
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment