Image Collector

Shows preview of the page images and provide options to download

Image Collector là gì?

Image Collector là một tiện ích mở rộng Chrome được phát triển bởi rajesh64727, và tính năng chính của nó là "Shows preview of the page images and provide options to download".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Image Collector

Tải xuống các tệp mở rộng Image Collector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Image Collector Image Collector
ID facfdjdppldcgnfhdbknokkbnfhdiofl
URL Chính Thức https://chromewebstore.google.com/detail/image-collector/facfdjdppldcgnfhdbknokkbnfhdiofl
Mô tả Shows preview of the page images and provide options to download
Kích Thước Tệp 14.33 KB
Số Lần Cài Đặt 1,123
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2021-09-14
Ngày Phát Hành 2020-06-20
Đánh Giá 4.40/5 Tổng số 5 Đánh Giá
Nhà Phát Triển rajesh64727
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://rajesh64727.github.io
URL Trang Chính Sách Bảo Mật https://rajesh64727.github.io/privacy.html
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}