Skip to content

Instantly share code, notes, and snippets.

View fiso's full-sized avatar
🍑

Filip Haglund fiso

🍑
View GitHub Profile
@fiso
fiso / noforyou.js
Last active December 17, 2023 10:17
Switch feed display to "following" on Threads
(function findElementsByContent(content, els) {
function recurse(node) {
if (node.innerHTML === content) {
els.push(node);
}
for (const child of node.children) {
recurse(child);
}
}