Created
September 26, 2024 22:26
-
-
Save davidroman0O/7837b20932c1202520c2e70325b8592c to your computer and use it in GitHub Desktop.
Anthropic Claude AI - Remove all knowledge
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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