LightShot Direct Link (prntscr.com)

Get directly the image url

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==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://greasyfork.org/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]+"";

})();