Skip to content

Instantly share code, notes, and snippets.

View DerKobe's full-sized avatar

Philip Claren DerKobe

View GitHub Profile
@DerKobe
DerKobe / chatGPT de-spinner
Created April 5, 2023 11:14 — forked from rynomad/chatGPT de-spinner
highlight and drag this code into your bookmark bar. If that doesn't work, ask chatGPT how to make a bookmarklet
javascript:(function() {
function extractText(element) {
if (element.nodeType === Node.TEXT_NODE) {
return element.textContent.trim() + ' ';
}
if (element.nodeType !== Node.ELEMENT_NODE) {
return '';
}
let text = '';
for (const child of element.childNodes) {