Skip to content

Instantly share code, notes, and snippets.

@xdegeneratex
Created April 21, 2025 08:04
Show Gist options
  • Select an option

  • Save xdegeneratex/3d39442312d9f917921c958953009ee9 to your computer and use it in GitHub Desktop.

Select an option

Save xdegeneratex/3d39442312d9f917921c958953009ee9 to your computer and use it in GitHub Desktop.
Fastpic Redirector
// ==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