Magento 2 images replace tool

Magento 2 tool to reload images from alternative domain.

Что такое Magento 2 images replace tool?

Magento 2 images replace tool - это расширение Chrome, разработанное Unknown, и его основная функция - "Magento 2 tool to reload images from alternative domain.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Magento 2 images replace tool

Скачайте файлы расширений Magento 2 images replace tool в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Magento 2 images replace tool Magento 2 images replace tool
ID ghfnlnmgccmcdiifdnlghdpmnodpehmm
Официальный URL https://chromewebstore.google.com/detail/magento-2-images-replace/ghfnlnmgccmcdiifdnlghdpmnodpehmm
Описание Magento 2 tool to reload images from alternative domain.
Размер файла 16.87 KB
Количество установок 28
Текущая Версия 1.0.0
Последнее Обновление 2021-11-04
Дата публикации 2021-11-03
Разработчик Unknown
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/DaviBackendorf/images-replace-extension
URL страницы помощи https://github.com/DaviBackendorf/images-replace-extension
Поддерживаемые языки 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"
    }
}