Image Data

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

Cos'è Image Data?

Image Data è un'estensione di Chrome sviluppata da cubeleco, e la sua funzione principale è "Show image resolution, file type, and file size on mouse over".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Image Data

Scarica i file di estensione Image Data in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Image Data Image Data
ID flongcohgnjdaopgebimagfmcaepbopn
URL Ufficiale https://chromewebstore.google.com/detail/image-data/flongcohgnjdaopgebimagfmcaepbopn
Descrizione Show image resolution, file type, and file size on mouse over
Dimensione del File 19.66 KB
Conteggio Installazioni 410
Versione Corrente 2.6.2
Ultimo Aggiornamento 2023-03-23
Data di Pubblicazione 2020-05-21
Valutazione 3.00/5 Totale 1 Valutazioni
Sviluppatore cubeleco
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/cubeleco/imageData
URL della Pagina di Aiuto https://github.com/cubeleco/imageData/issues
Lingue Supportate 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"
    ]
}