Bulk Image Downloader

A script that downloads images in bulk

ما هو Bulk Image Downloader؟

Bulk Image Downloader هو إضافة Chrome تم تطويرها بواسطة mehulpillaidev25، والميزة الرئيسية لها هي "A script that downloads images in bulk".

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

screenshot

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

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

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

                        A simple chrome extension that uses a script to download all images opened in a new tab
- Right click on any image element and click the "add image to download list" option to quickly add the image to the download list.
- Select all the images present on the page.
- Set minimum height and width filters.
- Remove selected image by clicking on it in the popup.
- Download images open in new tab.                    

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

الاسم Bulk Image Downloader Bulk Image Downloader
ID jeimgidkmgobaokpidmjojfjhhgchcan
عنوان URL الرسمي https://chromewebstore.google.com/detail/bulk-image-downloader/jeimgidkmgobaokpidmjojfjhhgchcan
الوصف A script that downloads images in bulk
حجم الملف 17.8 KB
عدد التثبيتات 29
النسخة الحالية 1.0
آخر تحديث 2021-01-12
تاريخ النشر 2021-01-12
المطور mehulpillaidev25
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bulk Image Downloader",
    "version": "1.0",
    "description": "A script that downloads images in bulk",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "downloads",
        "contextMenus",
        "unlimitedStorage"
    ],
    "background": {
        "scripts": [
            "startup.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/materialize\/1.0.0\/js\/materialize.min.js https:\/\/kit.fontawesome.com\/aa3aeafa8a.js; object-src 'self'"
}