Image Data

Show image resolution, file type, and file size on mouse over

O que é Image Data?

Image Data é uma extensão do Chrome desenvolvida por cubeleco, e sua principal característica é "Show image resolution, file type, and file size on mouse over".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Image Data

Baixe arquivos de extensão Image Data 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

                        Features:
- Display an image's: resolution, scaled resolution, file name, file type, file size, alt text, mime type, domain, pixel total, modification date
- Works with images on a webpage, in a new tab, and even local files
- 6 position settings: over, before, or after the image, fixed, follow cursor, or tool tip
- Keyboard shortcuts and toolbar button to easily enable or disable the add-on
- Display of data fully customizable with CSS

Permission: Access your data for all websites - Used to read and display image data on a web page.                    

Informações Básicas da Extensão

Nome Image Data Image Data
ID flongcohgnjdaopgebimagfmcaepbopn
URL Oficial https://chromewebstore.google.com/detail/image-data/flongcohgnjdaopgebimagfmcaepbopn
Descrição Show image resolution, file type, and file size on mouse over
Tamanho do Arquivo 19.66 KB
Contagem de Instalações 410
Versão Atual 2.6.2
Última Atualização 2023-03-23
Data de Publicação 2020-05-21
Classificação 3.00/5 Total de 1 Avaliações
Desenvolvedor cubeleco
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/cubeleco/imageData
URL da Página de Ajuda https://github.com/cubeleco/imageData/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Image Data",
    "version": "2.6.2",
    "description": "Show image resolution, file type, and file size on mouse over",
    "browser_specific_settings": {
        "gecko": {
            "id": "{b8ecb56e-f778-4df4-962a-52974b36abdd}",
            "strict_min_version": "48.0"
        }
    },
    "action": {
        "default_icon": {
            "48": "icons\/thumb-48.png"
        }
    },
    "icons": {
        "48": "icons\/thumb-48.png"
    },
    "commands": {
        "_execute_action": {
            "description": "Toggle Display"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "defaults.js",
                "imgdata.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "host_permissions": [
        ""
    ],
    "permissions": [
        "storage"
    ]
}