This file contains hidden or 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
// Bookmarklet: finds filenames with common extensions (pdf, zip, doc, ..) | |
// - generated using claude.ai | |
javascript:(function() { | |
function findTextNodes(node) { | |
const textNodes = []; | |
function getTextNodes(node) { | |
if (node.nodeType === Node.TEXT_NODE) { | |
textNodes.push(node); | |
} else { |
OlderNewer