Image Collector

Shows preview of the page images and provide options to download

Apa itu Image Collector?

Image Collector adalah ekstensi Chrome yang dikembangkan oleh rajesh64727, dan fitur utamanya adalah "Shows preview of the page images and provide options to download".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Image Collector

Unduh file ekstensi Image Collector dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Image Collector Image Collector
ID facfdjdppldcgnfhdbknokkbnfhdiofl
URL Resmi https://chromewebstore.google.com/detail/image-collector/facfdjdppldcgnfhdbknokkbnfhdiofl
Deskripsi Shows preview of the page images and provide options to download
Ukuran File 14.33 KB
Jumlah Instalasi 1,123
Versi Saat Ini 1.1.0
Terakhir Diperbarui 2021-09-14
Tanggal Publikasi 2020-06-20
Penilaian 4.40/5 Total 5 Penilaian
Pengembang rajesh64727
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://rajesh64727.github.io
URL Halaman Kebijakan Privasi https://rajesh64727.github.io/privacy.html
Bahasa yang Didukung 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"
            ]
        }
    ]
}