LightShot Direct Link

Get directly the image url

Versione datata 02/01/2018. Vedi la nuova versione l'ultima versione.

// ==UserScript==
// @run-at document-start
// @name         LightShot Direct Link
// @version      1.0
// @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("/");

   window.location.href = "http://www.camping-le-bivouac.com/104/decoupeur_stats/prnt.php?prnt="+res[3]+"";

})();