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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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
URL страницы политики конфиденциальности 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"
            ]
        }
    ]
}