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
官方網址 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"
    }
}