Magento 2 images replace tool

Magento 2 tool to reload images from alternative domain.

什么是Magento 2 images replace tool?

Magento 2 images replace tool是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Magento 2 tool to reload images from alternative domain.”。

扩展截图

screenshot

下载Magento 2 images replace tool扩展crx文件

下载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"
    }
}