Image-Details

Adds a context menu entry to open a popup window with some image details.

Co to jest Image-Details?

Image-Details to rozszerzenie Chrome opracowane przez https://ht0.de, a jego główną funkcją jest „Adds a context menu entry to open a popup window with some image details.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Image-Details

Pobierz pliki rozszerzeń Image-Details 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

                        This extension adds a context menu entry that will show image details in a popup window. It will work on images that use the  HTML tag and on most images that are included using the CSS background-image property. 

Shown details are: 
- File name
- File type/extension
- MIME type
- File size
- Image dimensions (width + height on page, natural width + natural height, scaling)
- Date (if available)
- Description / Alternative text
- Title
- Image URL
- Source page URL

The image viewer lets you examine the image using its drag and zoom capability. 
And you can download the image by clicking the little save icon on the right end of the file name. 

If you encounter bugs or have a feature request please send me an email.
And if you like this extension please consider a donation. Thank you!

See https://ht0.de/image-details.html for more information.                    

Podstawowe informacje o rozszerzeniu

Nazwa Image-Details Image-Details
ID aenkfgeagkbpmkbchfbfnkcefogmnboc
Oficjalny URL https://chromewebstore.google.com/detail/image-details/aenkfgeagkbpmkbchfbfnkcefogmnboc
Opis Adds a context menu entry to open a popup window with some image details.
Rozmiar pliku 23.32 KB
Liczba instalacji 4,709
Aktualna Wersja 3.0.1
Ostatnia Aktualizacja 2022-05-31
Data Publikacji 2018-06-04
Ocena 3.78/5 Łącznie 23 Oceny
Deweloper https://ht0.de
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://ht0.de/image-details.html
Adres URL Strony Pomocy https://ht0.de/image-details.html
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Image-Details",
    "description": "Adds a context menu entry to open a popup window with some image details.",
    "version": "3.0.1",
    "homepage_url": "https:\/\/ht0.de\/image-details.html",
    "manifest_version": 3,
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "16": "logo_16.png",
        "48": "logo_48.png",
        "128": "logo_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}