Fastpic

Automatically opens full resolution picture on fastpic.ru

// ==UserScript==
// @name        Fastpic
// @description Automatically opens full resolution picture on fastpic.ru
// @namespace   karasiq
// @include     http://fastpic.ru/*
// @include     https://fastpic.ru/*
// @version     1
// @grant       none
// @run-at document-body
// ==/UserScript==

function fastpicOpenBigPicture() {
  var fullImgSrc = document.getElementById("image").parentElement.href;
  if (fullImgSrc) {
    /* var imgElement = document.createElement("img");
    imgElement.src = fullImgSrc;
    document.body.innerHTML = "";
    document.body.appendChild(imgElement); */
    document.location.replace(fullImgSrc);
  }
}

fastpicOpenBigPicture();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址