Image Downloader

Download any image on your website page in one click!

ما هو Image Downloader؟

Image Downloader هو إضافة Chrome تم تطويرها بواسطة tiffanycheck.check، والميزة الرئيسية لها هي "Download any image on your website page in one click!".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Image Downloader

قم بتنزيل ملفات الامتداد Image Downloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        The extension gives the user the option to download images in different formats: PNG, JPG, SVG, WEBP                    

معلومات أساسية عن التمديد

الاسم Image Downloader Image Downloader
ID fnelomgkbbanddlflhgphgkijfeoehfb
عنوان URL الرسمي https://chrome.google.com/webstore/detail/image-downloader/fnelomgkbbanddlflhgphgkijfeoehfb
الوصف Download any image on your website page in one click!
حجم الملف 19.54 KB
عدد التثبيتات 3,519
النسخة الحالية 1.1
آخر تحديث 2022-12-05
تاريخ النشر 2022-11-28
المطور tiffanycheck.check
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://home.xcxologyda.xyz/
عنوان صفحة المساعدة https://home.xcxologyda.xyz/contact.html
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_icon": "logo.png",
        "default_title": "Image Downloader",
        "default_popup": "popup.html"
    },
    "description": "Download any image on your website page in one click!",
    "icons": {
        "128": "logo.png"
    },
    "manifest_version": 3,
    "name": "Image Downloader",
    "version": "1.1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*.svg"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}