Image-Details

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

Image-Details란 무엇입니까?

Image-Details은(는) https://ht0.de에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a context menu entry to open a popup window with some image details."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Image-Details 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Image-Details Image-Details
ID aenkfgeagkbpmkbchfbfnkcefogmnboc
공식 URL https://chromewebstore.google.com/detail/image-details/aenkfgeagkbpmkbchfbfnkcefogmnboc
설명 Adds a context menu entry to open a popup window with some image details.
파일 크기 23.32 KB
설치 횟수 4,709
현재 버전 3.0.1
최근 업데이트 2022-05-31
출시 날짜 2018-06-04
평점 3.78/5 총 23 개의 평점
개발자 https://ht0.de
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://ht0.de/image-details.html
도움말 페이지 URL https://ht0.de/image-details.html
지원되는 언어 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
        }
    ]
}