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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    }
}