Image Data

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

Qu'est-ce que Image Data ?

Image Data est une extension Chrome développée par cubeleco, et sa fonction principale est "Show image resolution, file type, and file size on mouse over".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Image Data

Téléchargez les fichiers d'extension Image Data au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Image Data Image Data
ID flongcohgnjdaopgebimagfmcaepbopn
URL Officiel https://chromewebstore.google.com/detail/image-data/flongcohgnjdaopgebimagfmcaepbopn
Description Show image resolution, file type, and file size on mouse over
Taille du Fichier 19.66 KB
Nombre d'Installations 410
Version Actuelle 2.6.2
Dernière Mise à Jour 2023-03-23
Date de Publication 2020-05-21
Évaluation 3.00/5 Total 1 Évaluations
Développeur cubeleco
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/cubeleco/imageData
URL de la Page d'Aide https://github.com/cubeleco/imageData/issues
Langues Prises en Charge 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"
    ]
}