Pic info

Gives a detailed info about the image like URL, alt text, file size and dimension

Pic info란 무엇입니까?

Pic info은(는) https://blog.idevelopweb.site에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Gives a detailed info about the image like URL, alt text, file size and dimension"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Pic info 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The below details of an image are shown when hovered over it
>shows the file url/path and a link to open it in a new window
>shows original image width and height
>shows actual image width and height used
>Shows alt text if available
>shows actual file size of the image(doesn't work for local image path)

Note: 
>Pic info box can be dragged around website for user convenience 
>Hovering over image which has CSS overlay effect may sometimes cause the extension not to display image details, remove those effects to view image info

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Change log:

V_1.5 => Added support to show ALT text for images if available 

V_1.4 => Added support for background images to show its info

V_1.3 => bug fix for local file access alert

V_1.2 => works without refresh on first time install and fixed css overide issues in some websites

V_1.1 => bug fix and image updation                    

확장 프로그램 기본 정보

이름 Pic info Pic info
ID ljociicifligbnfpobemibmmecnbbmla
공식 URL https://chromewebstore.google.com/detail/pic-info/ljociicifligbnfpobemibmmecnbbmla
설명 Gives a detailed info about the image like URL, alt text, file size and dimension
파일 크기 41.22 KB
설치 횟수 4,356
현재 버전 1.5
최근 업데이트 2018-09-28
출시 날짜 2018-09-27
평점 4.75/5 총 12 개의 평점
개발자 https://blog.idevelopweb.site
결제 유형 free
확장 프로그램 웹 사이트 http://blog.idevelopweb.site/chrome-extension/picture-info-chrome-extension/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pic info",
    "description": "Gives a detailed info about the image like URL, alt text, file size and dimension",
    "version": "1.5",
    "icons": {
        "16": "img\/icon.png",
        "32": "img\/icon-32.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/content.js"
            ],
            "css": [
                "css\/style.css"
            ]
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "js\/image.js"
        ]
    },
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_title": "Pic info"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [
        "tabs",
        "activeTab",
        ""
    ]
}