WebP and AVIF Highlighter

Makes WebP and AVIF recognizable on a webpage.

Co je WebP and AVIF Highlighter?

WebP and AVIF Highlighter je rozšíření Chrome vyvinuté webp-highlighter, a jeho hlavní funkcí je „Makes WebP and AVIF recognizable on a webpage.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření WebP and AVIF Highlighter

Stáhněte si soubory rozšíření WebP and AVIF Highlighter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název WebP and AVIF Highlighter WebP and AVIF Highlighter
ID aonapkfkfneahhaonjjpmcabpnbdmojl
Oficiální URL https://chromewebstore.google.com/detail/webp-and-avif-highlighter/aonapkfkfneahhaonjjpmcabpnbdmojl
Popis Makes WebP and AVIF recognizable on a webpage.
Velikost souboru 61.33 KB
Počet instalací 2,417
Aktuální Verze 1.91.1
Poslední Aktualizace 2022-09-02
Datum Vydání 2018-11-20
Hodnocení 4.00/5 Celkem 1 Hodnocení
Vývojář webp-highlighter
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://developers.google.com/speed/webp/
URL Stránky Nápovědy https://groups.google.com/a/webmproject.org/forum/#!forum/webp-discuss
Podporované Jazyky 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": [
        ""
    ]
}