View Image Info (properties)

Get properties(including dimensions, URL, file size, file type info) of the image your cursor is pointing to via context menu.

View Image Info (properties)란 무엇입니까?

View Image Info (properties)은(는) extfan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get properties(including dimensions, URL, file size, file type info) of the image your cursor is pointing to via context menu."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

View Image Info (properties) 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        @updated on 2023/17
    *Add Option

@updated on 2023/3/6
    *UI redesign

@updated on 2016/10/15
    *minor bug fix

@updated on 2016/10/07
    *minor changes

@updated on 2011/01/02
    *if an image's scaled, scaled dimensions will be displayed

@updated on 2010/12/26
    *Font shadow removed

@updated on 2010/12/06
    *add an 'ALT' field
    *you could now press ESC key to close the popup window

@updated on 2010/11/23:
    *now getting info async, the info window will appear more quickly
    *can handle base64 data correctly


@updated on 2010/10/25:
    *To mac users, you could see the action now
    *Little change made to improve the file size info
    *The size of the popup window may look better now

Get information of the image your cursor is pointing to, including image dimensions, file size, url, file type and preview.

*Known Issue: Sometimes the file size can not be shown.                    

확장 프로그램 기본 정보

이름 View Image Info (properties) View Image Info (properties)
ID jldjjifbpipdmligefcogandjojpdagn
공식 URL https://chromewebstore.google.com/detail/view-image-info-propertie/jldjjifbpipdmligefcogandjojpdagn
설명 Get properties(including dimensions, URL, file size, file type info) of the image your cursor is pointing to via context menu.
파일 크기 35.01 KB
설치 횟수 51,936
현재 버전 0.0.6
최근 업데이트 2023-03-20
출시 날짜 2016-10-15
평점 4.17/5 총 192 개의 평점
개발자 extfan
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ehaagwlke/View-Image-Info-Chrome
개인정보 보호 정책 페이지 URL https://www.freeprivacypolicy.com/live/1a989ad9-eb14-4e79-994b-1739426407b8
지원되는 언어 en,sr,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "0.0.6",
    "description": "__MSG_description__",
    "icons": {
        "16": "img\/icon-16.png",
        "32": "img\/icon-32.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "action": {
        "default_popup": "view\/popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/gia.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true
        },
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "storage",
        "tabs"
    ],
    "default_locale": "en",
    "background": {
        "service_worker": "js\/clk.js"
    },
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "manifest_version": 3
}