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
| // ==UserScript== | |
| // @name Reddit Auto-Hide Seen Posts | |
| // @namespace https://github.com/npezarro/scripts | |
| // @version 2.0 | |
| // @description Automatically hides Reddit posts after you scroll past them. Toggle to reveal hidden posts. Syncs across devices via Reddit's native hide API. | |
| // @author npezarro | |
| // @match *://*.reddit.com/* | |
| // @exclude *://www.reddit.com/api/* | |
| // @exclude *://mod.reddit.com/* | |
| // @grant GM_addStyle |
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
| // ==UserScript== | |
| // @name Browser Logs | |
| // @namespace https://github.com/npezarro/scripts | |
| // @version 1.5 | |
| // @description Lightweight read-only browser observer. Sends page state, console logs, and navigation events to a relay for CLI querying. No page interaction, no freezing. | |
| // @author npezarro | |
| // @match *://*/* | |
| // @grant GM_xmlhttpRequest | |
| // @grant GM_getValue | |
| // @grant GM_setValue |