Imgur.com - copy uploaded image URL to clipboard

Upload image to imgur.com. It's full URL will be automatically copied to clipboard. Simple.

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         Imgur.com - copy uploaded image URL to clipboard
// @name:pl      Imgur.com - skopiuj adres URL przesłanego obrazka do schowka
// @namespace    http://konieckropka.eu
// @version      1.0.1
// @description  Upload image to imgur.com. It's full URL will be automatically copied to clipboard. Simple.
// @description:pl  Ten prosty skrypcik pozwala zautomatyzować wgrywanie grafik na imgur.com. Po wysłaniu zdjęcia jego przesłany adres URL skopiuje się do schowka, gotowy do użycia. Proste.
// @require      http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
// @require      https://greatest.deepsurf.us/scripts/383527-wait-for-key-elements/code/Wait_for_key_elements.js?version=701631
// @match        https://imgur.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=imgur.com
// @license      No license
// ==/UserScript==

(function () {
    'use strict';
    waitForKeyElements(`div.UploadPost-file img[src^="https://"]`, copyImageUrlToClipboard);
})();

function copyImageUrlToClipboard() {
    let imageUrl = $("div.UploadPost-file img").attr("src");
    navigator.clipboard.writeText(imageUrl);
    $("div.ToastContainer").css({
        "background-color": "rgba(0, 0, 0, 0.6)",
        "height": "fit-content",
        "padding": "30px",
        "bottom": "70px",
        "top": "unset"
    }).html(`<div>Image URL: ${ imageUrl } copied to Clipboard</div>`);
}