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
Eメール [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"
    ]
}