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
| /* While signed in, navigate to your Profile > Replies page | |
| and run the following script from DevTools Console */ | |
| (() => { | |
| const sleep = (ms) => new Promise(r => setTimeout(r, ms)); | |
| const normalize = (s) => (s || "").replace(/\s+/g, " ").trim().toLowerCase(); | |
| const state = { | |
| running: false, | |
| processed: new Set(), |