Skip to content

Instantly share code, notes, and snippets.

@davidroman0O
Created September 26, 2024 22:26
Show Gist options
  • Save davidroman0O/7837b20932c1202520c2e70325b8592c to your computer and use it in GitHub Desktop.
Save davidroman0O/7837b20932c1202520c2e70325b8592c to your computer and use it in GitHub Desktop.
Anthropic Claude AI - Remove all knowledge
// I was so tired of clicking
const uls = document.querySelectorAll('ul');
uls.forEach(ul => {
const buttons = ul.querySelectorAll('button[aria-label="Remove from project knowledge"]');
buttons.forEach(button => button.click());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment