🎉 欢迎访问GreasyFork.Org 镜像站!本镜像站由公众号【爱吃馍】搭建,用于分享脚本。联系邮箱📮

Greasy fork 爱吃馍镜像

Imgur.com - copy uploaded image URL to clipboard

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

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

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

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.

(I already have a user script manager, let me install it!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

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         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://greasyfork.org/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>`);
}