Image info

Select any image on a page, including background images, to view its detailed information, a full-size preview, and easy download.

Image infoคืออะไร?

Image info เป็นส่วนขยายของ Chrome ที่พัฒนาโดย SebEyron และคุณลักษณะหลักของมันคือ "Select any image on a page, including background images, to view its detailed information, a full-size preview, and easy download."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Image info

ดาวน์โหลดไฟล์ส่วนขยาย Image info ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Select an image using the "Image info" icon in the toolbar, and a popup will open, showing information about the image and a button to download it.
• Supports background images, local images and SVG images.
• Allows to select which image to inspect when several images are stacked.
• Lets you decide which information to show:
    - Image source/address
    - File name
    - File type
    - File size
    - File date
    - Image dimensions
    - Image title
    - Image description
    - Full image preview
• Allows to quickly show or hide all the information from the list above

🚫 No data is sent, nothing is tracked or recorded. Only your preferences are saved on your computer

v1.23.9.10:
• Upgraded to Extension Manifest version 3 and updated code structure accordingly
• Improved the detection and calculation of the images size, date and dimensions

v1.0.0.0:
• Original version                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Image info Image info
ID afgpbglehffikkhaokfgmdoedgapjdia
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/image-info/afgpbglehffikkhaokfgmdoedgapjdia
คำอธิบาย Select any image on a page, including background images, to view its detailed information, a full-size preview, and easy download.
ขนาดไฟล์ 40.56 KB
จำนวนการติดตั้ง 303
เวอร์ชันปัจจุบัน 1.23.9.10
อัปเดตครั้งล่าสุด 2023-09-10
วันที่เผยแพร่ 2020-02-16
คะแนน 3.00/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา SebEyron
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "version": "1.23.9.10",
    "default_locale": "en",
    "manifest_version": 3,
    "icons": {
        "16": "assets\/icon_016.png",
        "24": "assets\/icon_024.png",
        "32": "assets\/icon_032.png",
        "48": "assets\/icon_048.png",
        "64": "assets\/icon_064.png",
        "128": "assets\/icon_128.png"
    },
    "action": {
        "default_title": "__MSG_appName__",
        "default_icon": {
            "16": "assets\/icon_016.png",
            "24": "assets\/icon_024.png",
            "32": "assets\/icon_032.png"
        }
    },
    "options_ui": {
        "page": "image-info\/options.html",
        "open_in_tab": true
    },
    "background": {
        "service_worker": "image-info\/background.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "image-info\/imgInfo.imgSelector.js"
            ],
            "css": [
                "image-info\/imgInfo.crosshair.css"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage"
    ],
    "commands": {
        "imgInfo-inspect_image": {
            "description": "__MSG_imgInfo_cmdLabel_selectImg__",
            "suggested_key": {
                "default": "Alt+I",
                "mac": "Command+I"
            }
        }
    }
}