Skip to content

Instantly share code, notes, and snippets.

View qdilmac's full-sized avatar
:shipit:
<<decoding my brain>>

Mustafa Osman Dilmaç qdilmac

:shipit:
<<decoding my brain>>
View GitHub Profile
@qdilmac
qdilmac / remove-twitter-likes.js
Created May 24, 2023 16:05 — forked from cacheflowe/remove-twitter-likes.js
Remove your Twitter likes
// [Updated 2021-01-18 w/new selectors]
// go to your account Likes page and run this in the console:
function scrollToLoadMore() {
// keep scrolling if twitter tries to stop loading more.
// scroll up, then down to force infinite load.
window.scrollTo(0, 0);
setTimeout(function() {
window.scrollBy(0, 9999999999);
}, 200);