Image Collector

Shows preview of the page images and provide options to download

ما هو Image Collector؟

Image Collector هو إضافة Chrome تم تطويرها بواسطة rajesh64727، والميزة الرئيسية لها هي "Shows preview of the page images and provide options to download".

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

screenshot
screenshot

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

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

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

                        Provides 2 modes
1. Thumbnail preview, image dimensions, loading time with download option.
2. URLs list in plain text

Useful for web developers, testers and designers.

Banner images are from JumpStart.com public website.

Suggestions and constructive comments are welcome.

*updates 
1.1.0 - Includes element background image URLs as well.                    

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

الاسم Image Collector Image Collector
ID facfdjdppldcgnfhdbknokkbnfhdiofl
عنوان URL الرسمي https://chromewebstore.google.com/detail/image-collector/facfdjdppldcgnfhdbknokkbnfhdiofl
الوصف Shows preview of the page images and provide options to download
حجم الملف 14.33 KB
عدد التثبيتات 1,123
النسخة الحالية 1.1.0
آخر تحديث 2021-09-14
تاريخ النشر 2020-06-20
تقييم 4.40/5 مجموع تقييمات 5
المطور rajesh64727
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://rajesh64727.github.io
عنوان صفحة سياسة الخصوصية https://rajesh64727.github.io/privacy.html
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Image Collector",
    "version": "1.1.0",
    "description": "Shows preview of the page images and provide options to download",
    "browser_action": {
        "default_icon": "image_collector128.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "image_collector128.png"
    },
    "permissions": [
        "https:\/\/*\/*",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}