Skip to content

Instantly share code, notes, and snippets.

@BigMeex
BigMeex / gist:88e0f9f33755de1756f293a28b320de1
Created May 17, 2026 06:24
A script to automaticall unbookmark twitter posts (BE CAREFUL)
// Twitter/X Unbookmark Script
// Instructions:
// 1. Go to https://x.com/i/bookmarks in your browser
// 2. Open DevTools (F12) → Console tab
// 3. Paste this entire script and press Enter
// 4. Leave the tab open and active until it finishes
// 5. To stop early: type stopUnbookmark() in the console and press Enter
(async function unbookmarkAll() {
const DELAY_BETWEEN_CLICKS = 600; // ms between each unbookmark click
@BigMeex
BigMeex / gist:d9e07c4db89bc709017ea43f777ba51b
Created May 17, 2026 06:23
A script to automatically unsave NSFW reddit posts.
// Reddit Unsave NSFW Posts Script (API version — no scrolling needed)
// Instructions:
// 1. Log in to Reddit in your browser
// 2. Open DevTools (F12) → Console tab
// 3. Paste this entire script and press Enter
// 4. To stop early: type stopUnsave() in the console and press Enter
//
// Works on any Reddit page — no need to navigate to your saved history first.
// Uses Reddit's own JSON API so nothing is ever missed due to virtual scrolling.
@BigMeex
BigMeex / gist:5d57b4ecd61608afa6e79b2edc0a7138
Created May 17, 2026 06:19
A script to automatically unupvote NSFW reddit posts.
// Reddit Un-upvote NSFW Posts Script (API version — no scrolling needed)
// Instructions:
// 1. Log in to Reddit in your browser
// 2. Open DevTools (F12) → Console tab
// 3. Paste this entire script and press Enter
// 4. To stop early: type stopNSFW() in the console and press Enter
//
// Works on any Reddit page — no need to navigate to your upvoted history first.
// Uses Reddit's own JSON API so nothing is ever missed due to virtual scrolling.