Last active
September 14, 2025 23:12
-
-
Save Vocaned/1eeeba249dcaf05f917d82d7f7fa9438 to your computer and use it in GitHub Desktop.
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 raw media | |
| // @version 1.0.1 | |
| // @description Replace reddit media embeds with the raw files | |
| // @match https://*.reddit.com/media | |
| // @author voc | |
| // @namespace https://github.com/Vocaned | |
| // @downloadURL https://gist.github.com/Vocaned/1eeeba249dcaf05f917d82d7f7fa9438/raw/reddit-raw-media.user.js | |
| // @grant none | |
| // @run-at document-start | |
| // ==/UserScript== | |
| (async ()=>window.location.href=URL.createObjectURL(await(await fetch(new URL(window.location.href).searchParams.get('url'))).blob()))() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment