Pic info

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

O que é Pic info?

Pic info é uma extensão do Chrome desenvolvida por https://blog.idevelopweb.site, e sua principal característica é "Gives a detailed info about the image like URL, alt text, file size and dimension".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Pic info

Baixe arquivos de extensão Pic info no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Pic info Pic info
ID ljociicifligbnfpobemibmmecnbbmla
URL Oficial https://chromewebstore.google.com/detail/pic-info/ljociicifligbnfpobemibmmecnbbmla
Descrição Gives a detailed info about the image like URL, alt text, file size and dimension
Tamanho do Arquivo 41.22 KB
Contagem de Instalações 4,356
Versão Atual 1.5
Última Atualização 2018-09-28
Data de Publicação 2018-09-27
Classificação 4.75/5 Total de 12 Avaliações
Desenvolvedor https://blog.idevelopweb.site
Tipo de Pagamento free
Site da Extensão http://blog.idevelopweb.site/chrome-extension/picture-info-chrome-extension/
Idiomas Suportados 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",
        ""
    ]
}