Greasy Fork

Better fastpic.ru and fastpic.org

Just open the image - 6/21/2021, 8:20:39 AM

目前为 2021-09-12 提交的版本。查看 最新版本

// ==UserScript==
// @name        Better fastpic.ru and fastpic.org
// @namespace   Violentmonkey Scripts
// @match       https://fastpic.ru/view/*
// @match       https://fastpic.org/view/*
// @grant       none
// @version     1.1
// @author      -
// @description Just open the image - 6/21/2021, 8:20:39 AM
// ==/UserScript==

this.$ = jQuery.noConflict(true)

$("a#imglink > img.image").ready(function () {
  src = $("a#imglink > img.image").attr("src")
  window.location = src
})