WebP and AVIF Highlighter

Makes WebP and AVIF recognizable on a webpage.

Cos'è WebP and AVIF Highlighter?

WebP and AVIF Highlighter è un'estensione di Chrome sviluppata da webp-highlighter, e la sua funzione principale è "Makes WebP and AVIF recognizable on a webpage.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione WebP and AVIF Highlighter

Scarica i file di estensione WebP and AVIF Highlighter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome WebP and AVIF Highlighter WebP and AVIF Highlighter
ID aonapkfkfneahhaonjjpmcabpnbdmojl
URL Ufficiale https://chromewebstore.google.com/detail/webp-and-avif-highlighter/aonapkfkfneahhaonjjpmcabpnbdmojl
Descrizione Makes WebP and AVIF recognizable on a webpage.
Dimensione del File 61.33 KB
Conteggio Installazioni 2,417
Versione Corrente 1.91.1
Ultimo Aggiornamento 2022-09-02
Data di Pubblicazione 2018-11-20
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore webp-highlighter
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://developers.google.com/speed/webp/
URL della Pagina di Aiuto https://groups.google.com/a/webmproject.org/forum/#!forum/webp-discuss
Lingue Supportate 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": [
        ""
    ]
}