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
| // 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 |
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
| // 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. |
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
| // 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. |