Fast URL image for Lightshot

Input form with URL image for fast copying to clipboard

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name      Fast URL image for Lightshot
// @namespace  
// @version   0.2
// @description Input form with URL image for fast copying to clipboard
// @include   *prntscr.com*
// @match http://prntscr.com*
// @copyright 2014, frantsm | http://vk.com/frantsm
// ==/UserScript==

var src =  document.getElementsByTagName('img')[0].src;

var s = document.createElement('div');
s.id = "style";

var d = document.createElement('div');
d.id = "textbox";

d.style.position='absolute';
d.style.top='8px';
d.style.right='58%';
d.style.width='1px';
d.style.height='1px';

var txt = document.createElement('input'); 
txt.setAttribute('type','text');
txt.setAttribute('value',src);
txt.style.marginRight = '10px';
txt.style.width='200px';
txt.style.height='25px';
txt.style.margin='2px';

document.body.appendChild(s);

document.getElementById('style').innerHTML = 
    
    '<style>'+
    'input{ '+
    'color: #FFF;'+
    'text-align:center;'+
    'box-shadow: 0 1px 0 rgba(255,255,255,.15), 0 2px 4px rgba(0,0,0,.2) inset, 0 0 12px rgba(255,255,255,.1); '+
    'background: rgba(0,0,0,.2);'+
    'border-radius: 2px;}'+
    '#textbox{z-index:99999999;}'+
    'div.header-social{display:none;}'+
    '</style>';

document.body.appendChild(d);
document.getElementById('textbox').appendChild(txt);

txt.focus();
txt.select();