Replace background-images with <img> tag

Replaces elements with "background-image" inline style with a separate img tag with src pointing to that image. That allows right-click on the image to copy URL & share conveniently.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         Replace background-images with <img> tag
// @description  Replaces elements with "background-image" inline style with a separate img tag with src pointing to that image. That allows right-click on the image to copy URL & share conveniently.
// @namespace    replbackgroundiwithimgtag
// @version      1.0.4
// @author       k3abird
// @include      *
// @exclude      https://steamcommunity.com/*
// ==/UserScript==

(function() {
    'use strict';

    const els = document.querySelectorAll("[style]");
    let reURL = /url\(['"]*(.*?)['"]*\)/;

    let replacedCnt = 0;
    els.forEach((el) => {
        // skip img tags
        if (el.tagName == "IMG") {
          return;
        }
      
        const elSt = el.style;
        if (elSt.backgroundImage != "" && elSt.backgroundPosition == "") {
            const m = el.style.backgroundImage.match(reURL);
            if (m != null && m.length > 1) {
                const cs = window.getComputedStyle(el);
                //if (cs.backgroundSize != "cover") {
                //    return // does not have cover, do not replace
                //}
              
                // remove original background image
                elSt.backgroundImage = "";
                // ensure position relative on parent
                elSt.position = "relative";
                
                // append a child <img>
                const img = document.createElement("img")
                img.src = m[1];
                img.style.position = "absolute";
                img.style.display = "inline";
                img.style.visibility = "visible";
                img.style.left = img.style.top = "0";
                img.style.zIndex = -1;
                // img.style.width = img.style.height = "100%";
                // if (cs.width != "" && cs.width != "0px") {
                //     img.style.width = cs.width;
                // } else {
                //     img.style.width = "100%";
                // }
                if (cs.height != "" && cs.height != "0px") {
                    img.style.height = cs.height;
                } else {
                    img.style.height = "100%";
                }
                el.appendChild(img);
                replacedCnt++;
            }
        }
    });

    if (replacedCnt > 0) {
        console.log("k3a: fixed "+replacedCnt+"/"+els.length+" elements with background-image by appending img child");
    }
})();