Image Data

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

Τι είναι το Image Data;

Το Image Data είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον cubeleco, και η κύρια λειτουργία του είναι "Show image resolution, file type, and file size on mouse over".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Image Data

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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"
    ]
}