Image Data

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

Image Data là gì?

Image Data là một tiện ích mở rộng Chrome được phát triển bởi cubeleco, và tính năng chính của nó là "Show image resolution, file type, and file size on mouse over".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Image Data

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

                        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.                    

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

Tên Image Data Image Data
ID flongcohgnjdaopgebimagfmcaepbopn
URL Chính Thức https://chromewebstore.google.com/detail/image-data/flongcohgnjdaopgebimagfmcaepbopn
Mô tả Show image resolution, file type, and file size on mouse over
Kích Thước Tệp 19.66 KB
Số Lần Cài Đặt 410
Phiên Bản Hiện Tại 2.6.2
Cập Nhật Lần Cuối 2023-03-23
Ngày Phát Hành 2020-05-21
Đánh Giá 3.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển cubeleco
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/cubeleco/imageData
URL Trang Trợ Giúp https://github.com/cubeleco/imageData/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}