Image Collector

Shows preview of the page images and provide options to download

Co to jest Image Collector?

Image Collector to rozszerzenie Chrome opracowane przez rajesh64727, a jego główną funkcją jest „Shows preview of the page images and provide options to download”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Image Collector

Pobierz pliki rozszerzeń Image Collector w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Image Collector Image Collector
ID facfdjdppldcgnfhdbknokkbnfhdiofl
Oficjalny URL https://chromewebstore.google.com/detail/image-collector/facfdjdppldcgnfhdbknokkbnfhdiofl
Opis Shows preview of the page images and provide options to download
Rozmiar pliku 14.33 KB
Liczba instalacji 1,123
Aktualna Wersja 1.1.0
Ostatnia Aktualizacja 2021-09-14
Data Publikacji 2020-06-20
Ocena 4.40/5 Łącznie 5 Oceny
Deweloper rajesh64727
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://rajesh64727.github.io
Adres URL Strony Polityki Prywatności https://rajesh64727.github.io/privacy.html
Obsługiwane Języki 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"
            ]
        }
    ]
}