Fast URL image for Lightshot

Input form with URL image for fast copying to clipboard

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

Bạn sẽ cần cài đặt một tiện ích mở rộng như Tampermonkey hoặc Violentmonkey để cài đặt kịch bản này.

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.

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

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==
// @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();