WebP and AVIF Highlighter

Makes WebP and AVIF recognizable on a webpage.

O que é WebP and AVIF Highlighter?

WebP and AVIF Highlighter é uma extensão do Chrome desenvolvida por webp-highlighter, e sua principal característica é "Makes WebP and AVIF recognizable on a webpage.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão WebP and AVIF Highlighter

Baixe arquivos de extensão WebP and AVIF Highlighter 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

                        Chrome Extension that highlights WebP images during normal browsing.
Images are surrounded by a dashed border. The color depends on the type:
- green for simple lossy (nothing from extended)
- pink for simple lossless (nothing from extended)
- red for extended (can contain transparency, animations, color profile ...)
When hovering an image, the quality/url will appear except on sites with complex CSS. In that case, just look up the messages in the console by pressing F12.

By default, the extension is enabled. You can disable it or change its options
by clicking on its icon (it looks like the end of the WebP logo) then refresh
your page.                    

Informações Básicas da Extensão

Nome WebP and AVIF Highlighter WebP and AVIF Highlighter
ID aonapkfkfneahhaonjjpmcabpnbdmojl
URL Oficial https://chromewebstore.google.com/detail/webp-and-avif-highlighter/aonapkfkfneahhaonjjpmcabpnbdmojl
Descrição Makes WebP and AVIF recognizable on a webpage.
Tamanho do Arquivo 61.33 KB
Contagem de Instalações 2,417
Versão Atual 1.91.1
Última Atualização 2022-09-02
Data de Publicação 2018-11-20
Classificação 4.00/5 Total de 1 Avaliações
Desenvolvedor webp-highlighter
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://developers.google.com/speed/webp/
URL da Página de Ajuda https://groups.google.com/a/webmproject.org/forum/#!forum/webp-discuss
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "WebP and AVIF Highlighter",
    "version": "1.91.1",
    "description": "Makes WebP and AVIF recognizable on a webpage.",
    "icons": {
        "48": "icons\/webplogo.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "action": {
        "default_icon": "icons\/webplogo.webp",
        "default_popup": "popup.html",
        "default_title": "WebP highlighter"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "jquery-3.1.1.min.js",
                "webp_reformatter.js"
            ],
            "css": [
                "webp.css"
            ]
        }
    ],
    "host_permissions": [
        ""
    ]
}