Created
April 21, 2025 08:04
-
-
Save xdegeneratex/3d39442312d9f917921c958953009ee9 to your computer and use it in GitHub Desktop.
Fastpic Redirector
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 Fastpic Redirector | |
| // @namespace https://github.com/xdegeneratex | |
| // @version 2025-04-21 | |
| // @description Redirects to the full size Fastpic image. | |
| // @author xdegeneratex | |
| // @match https://fastpic.org/view/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=fastpic.org | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; | |
| const img = document.querySelector('.img-fluid'); | |
| if (img) { | |
| document.location.href = img.src; | |
| } | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment