Image-Details

Adds a context menu entry to open a popup window with some image details.

Image-Detailsคืออะไร?

Image-Details เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://ht0.de และคุณลักษณะหลักของมันคือ "Adds a context menu entry to open a popup window with some image details."

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

screenshot
screenshot

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

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

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

                        This extension adds a context menu entry that will show image details in a popup window. It will work on images that use the  HTML tag and on most images that are included using the CSS background-image property. 

Shown details are: 
- File name
- File type/extension
- MIME type
- File size
- Image dimensions (width + height on page, natural width + natural height, scaling)
- Date (if available)
- Description / Alternative text
- Title
- Image URL
- Source page URL

The image viewer lets you examine the image using its drag and zoom capability. 
And you can download the image by clicking the little save icon on the right end of the file name. 

If you encounter bugs or have a feature request please send me an email.
And if you like this extension please consider a donation. Thank you!

See https://ht0.de/image-details.html for more information.                    

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

ชื่อ Image-Details Image-Details
ID aenkfgeagkbpmkbchfbfnkcefogmnboc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/image-details/aenkfgeagkbpmkbchfbfnkcefogmnboc
คำอธิบาย Adds a context menu entry to open a popup window with some image details.
ขนาดไฟล์ 23.32 KB
จำนวนการติดตั้ง 4,709
เวอร์ชันปัจจุบัน 3.0.1
อัปเดตครั้งล่าสุด 2022-05-31
วันที่เผยแพร่ 2018-06-04
คะแนน 3.78/5 รวมทั้งหมด 23 คะแนน
ผู้พัฒนา https://ht0.de
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://ht0.de/image-details.html
URL หน้าช่วยเหลือ https://ht0.de/image-details.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Image-Details",
    "description": "Adds a context menu entry to open a popup window with some image details.",
    "version": "3.0.1",
    "homepage_url": "https:\/\/ht0.de\/image-details.html",
    "manifest_version": 3,
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "16": "logo_16.png",
        "48": "logo_48.png",
        "128": "logo_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}