Image-Details

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

Image-Details là gì?

Image-Details là một tiện ích mở rộng Chrome được phát triển bởi https://ht0.de, và tính năng chính của nó là "Adds a context menu entry to open a popup window with some image details.".

Ả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-Details

Tải xuống các tệp mở rộng Image-Details 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

                        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.                    

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

Tên Image-Details Image-Details
ID aenkfgeagkbpmkbchfbfnkcefogmnboc
URL Chính Thức https://chromewebstore.google.com/detail/image-details/aenkfgeagkbpmkbchfbfnkcefogmnboc
Mô tả Adds a context menu entry to open a popup window with some image details.
Kích Thước Tệp 23.32 KB
Số Lần Cài Đặt 4,709
Phiên Bản Hiện Tại 3.0.1
Cập Nhật Lần Cuối 2022-05-31
Ngày Phát Hành 2018-06-04
Đánh Giá 3.78/5 Tổng số 23 Đánh Giá
Nhà Phát Triển https://ht0.de
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://ht0.de/image-details.html
URL Trang Trợ Giúp https://ht0.de/image-details.html
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}