// ==UserScript== // @name Better fastpic.ru // @namespace Violentmonkey Scripts // @match https://fastpic.ru/view/* // @grant none // @version 1.0 // @author - // @description Just open the image - 6/21/2021, 8:20:39 AM // @downloadURL none // ==/UserScript== this.$ = jQuery.noConflict(true) $("a#imglink > img.image").ready(function () { src = $("a#imglink > img.image").attr("src") window.location = src })