Magento 2 images replace tool

Magento 2 tool to reload images from alternative domain.

Qu'est-ce que Magento 2 images replace tool ?

Magento 2 images replace tool est une extension Chrome développée par Unknown, et sa fonction principale est "Magento 2 tool to reload images from alternative domain.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Magento 2 images replace tool

Téléchargez les fichiers d'extension Magento 2 images replace tool au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Magento 2 images replace tool Magento 2 images replace tool
ID ghfnlnmgccmcdiifdnlghdpmnodpehmm
URL Officiel https://chromewebstore.google.com/detail/magento-2-images-replace/ghfnlnmgccmcdiifdnlghdpmnodpehmm
Description Magento 2 tool to reload images from alternative domain.
Taille du Fichier 16.87 KB
Nombre d'Installations 28
Version Actuelle 1.0.0
Dernière Mise à Jour 2021-11-04
Date de Publication 2021-11-03
Développeur Unknown
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/DaviBackendorf/images-replace-extension
URL de la Page d'Aide https://github.com/DaviBackendorf/images-replace-extension
Langues Prises en Charge 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"
    }
}