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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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