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
官方網址 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"
    ]
}