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
| #!/usr/bin/env python3 | |
| """ | |
| Inline local images into a single HTML file for email delivery. | |
| - Input: ./email.html | |
| - Images: ./images/<...> | |
| - Output: ./email-single.html | |
| Rewrites: | |
| - <img src="images/..."> |
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 ChatGPT Auto Project Redirect | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0 | |
| // @description Automatically redirect to specified ChatGPT project instead of new chat | |
| // @author You | |
| // @match https://chatgpt.com/* | |
| // @grant none | |
| // @run-at document-start | |
| // ==/UserScript== |