Skip to content

Instantly share code, notes, and snippets.

View gilesc's full-sized avatar

Cory Giles gilesc

  • Oklahoma Medical Research Foundation
  • Oklahoma City, OK
  • X @cbgiles
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rynomad
rynomad / chatGPT de-spinner
Last active March 21, 2025 14:12
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) {