Magento 2 images replace tool

Magento 2 tool to reload images from alternative domain.

Was ist Magento 2 images replace tool?

Magento 2 images replace tool ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Magento 2 tool to reload images from alternative domain.".

Erweiterungsscreenshots

screenshot

Magento 2 images replace tool-Erweiterungs-CRX-Datei herunterladen

Laden Sie Magento 2 images replace tool-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        The problem
Websites often have folders with multiple images, and in some cases the total size of these files can be very large, taking up a lot of space on the developer's storage drive.

The extension's idea is to allow images to be loaded from an alternate domain, eliminating the need to have a local copy.                    

Grundlegende Informationen zur Erweiterung

Name Magento 2 images replace tool Magento 2 images replace tool
ID ghfnlnmgccmcdiifdnlghdpmnodpehmm
Offizielle URL https://chromewebstore.google.com/detail/magento-2-images-replace/ghfnlnmgccmcdiifdnlghdpmnodpehmm
Beschreibung Magento 2 tool to reload images from alternative domain.
Dateigröße 16.87 KB
Installationsanzahl 28
Aktuelle Version 1.0.0
Letztes Update 2021-11-04
Veröffentlichungsdatum 2021-11-03
Entwickler Unknown
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/DaviBackendorf/images-replace-extension
Hilfeseite URL https://github.com/DaviBackendorf/images-replace-extension
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Magento 2 images replace tool",
    "description": "Magento 2 tool to reload images from alternative domain.",
    "version": "1.0.0",
    "manifest_version": 3,
    "default_locale": "en_US",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "js\/replace.js"
            ],
            "css": [
                "css\/notify.css"
            ],
            "all_frames": true
        }
    ],
    "action": {
        "default_popup": "html\/popup.html",
        "default_icon": {
            "16": "\/images\/logo16.png",
            "32": "\/images\/logo32.png",
            "48": "\/images\/logo48.png",
            "128": "\/images\/logo128.png"
        }
    },
    "icons": {
        "16": "\/images\/logo16.png",
        "32": "\/images\/logo32.png",
        "48": "\/images\/logo48.png",
        "128": "\/images\/logo128.png"
    }
}