Image Data

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

Co to jest Image Data?

Image Data to rozszerzenie Chrome opracowane przez cubeleco, a jego główną funkcją jest „Show image resolution, file type, and file size on mouse over”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Image Data

Pobierz pliki rozszerzeń Image Data w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Image Data Image Data
ID flongcohgnjdaopgebimagfmcaepbopn
Oficjalny URL https://chromewebstore.google.com/detail/image-data/flongcohgnjdaopgebimagfmcaepbopn
Opis Show image resolution, file type, and file size on mouse over
Rozmiar pliku 19.66 KB
Liczba instalacji 410
Aktualna Wersja 2.6.2
Ostatnia Aktualizacja 2023-03-23
Data Publikacji 2020-05-21
Ocena 3.00/5 Łącznie 1 Oceny
Deweloper cubeleco
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/cubeleco/imageData
Adres URL Strony Pomocy https://github.com/cubeleco/imageData/issues
Obsługiwane Języki 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"
    ]
}