Image Data

Show image resolution, file type, and file size on mouse over

什么是Image Data?

Image Data是由cubeleco开发的Chrome扩展程序,该扩展的主要功能是“Show image resolution, file type, and file size on mouse over”。

扩展截图

screenshot
screenshot
screenshot

下载Image Data扩展crx文件

下载Image Data扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Features:
- Display an image's: resolution, scaled resolution, file name, file type, file size, alt text, mime type, domain, pixel total, modification date
- Works with images on a webpage, in a new tab, and even local files
- 6 position settings: over, before, or after the image, fixed, follow cursor, or tool tip
- Keyboard shortcuts and toolbar button to easily enable or disable the add-on
- Display of data fully customizable with CSS

Permission: Access your data for all websites - Used to read and display image data on a web page.                    

扩展基本信息

名称 Image Data Image Data
ID flongcohgnjdaopgebimagfmcaepbopn
官方URL https://chromewebstore.google.com/detail/image-data/flongcohgnjdaopgebimagfmcaepbopn
简介 Show image resolution, file type, and file size on mouse over
文件大小 19.66 KB
安装次数 410
当前版本 2.6.2
更新时间 2023-03-23
上架时间 2020-05-21
评分 3.00/5 共1次评分
开发者 cubeleco
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/cubeleco/imageData
帮助页面URL https://github.com/cubeleco/imageData/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Image Data",
    "version": "2.6.2",
    "description": "Show image resolution, file type, and file size on mouse over",
    "browser_specific_settings": {
        "gecko": {
            "id": "{b8ecb56e-f778-4df4-962a-52974b36abdd}",
            "strict_min_version": "48.0"
        }
    },
    "action": {
        "default_icon": {
            "48": "icons\/thumb-48.png"
        }
    },
    "icons": {
        "48": "icons\/thumb-48.png"
    },
    "commands": {
        "_execute_action": {
            "description": "Toggle Display"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "defaults.js",
                "imgdata.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "host_permissions": [
        ""
    ],
    "permissions": [
        "storage"
    ]
}