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"
            ]
        }
    ]
}