您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Get directly the image url
// ==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]+""; })();