LightShot Direct Link (prntscr.com)

Get directly the image url

目前为 2018-12-21 提交的版本。查看 最新版本

// ==UserScript==
// @run-at document-start
// @name         LightShot Direct Link (prntscr.com)
// @version      1.02
// @description  Get directly the image url
// @author       Catarax
// @match        https://prnt.sc/*
// @require http://code.jquery.com/jquery-latest.js
// @namespace https://gf.qytechs.cn/users/2290
// ==/UserScript==

(function() {
    'use strict';

    var str = ""+window.location+"";
    var res = str.split("/");
   
   // Original URL redirector
   //window.location.href = "http://novagenda.fr/DEBUG/prnt.php?prnt="+res[3]+"";

   // More reliable url (99% uptime from wazer)
   window.location.href = "http://wazer.dk/lightshot/prnt.php?prnt="+res[3]+"";

})();

QingJ © 2025

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