DEV Community

Luigui Moreno
Luigui Moreno

Posted on

How to remove all the bookmarks in X

Use this script in the bookmark page https://x.com/i/bookmarks chrome console

setInterval(function(){
    var divElement = document.querySelector('div[aria-label="Timeline: Bookmarks"].css-175oi2r')
let removeButton = divElement.querySelector("button[aria-label=Bookmarked][data-testid=removeBookmark]")
    if(removeButton) {
        removeButton.click();
    }
Enter fullscreen mode Exit fullscreen mode

Top comments (0)