Image-Details

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

什么是Image-Details?

Image-Details是由https://ht0.de开发的Chrome扩展程序,该扩展的主要功能是“Adds a context menu entry to open a popup window with some image details.”。

扩展截图

screenshot
screenshot

下载Image-Details扩展crx文件

下载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
        }
    ]
}