WebP and AVIF Highlighter

Makes WebP and AVIF recognizable on a webpage.

Qu'est-ce que WebP and AVIF Highlighter ?

WebP and AVIF Highlighter est une extension Chrome développée par webp-highlighter, et sa fonction principale est "Makes WebP and AVIF recognizable on a webpage.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension WebP and AVIF Highlighter

Téléchargez les fichiers d'extension WebP and AVIF Highlighter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom WebP and AVIF Highlighter WebP and AVIF Highlighter
ID aonapkfkfneahhaonjjpmcabpnbdmojl
URL Officiel https://chromewebstore.google.com/detail/webp-and-avif-highlighter/aonapkfkfneahhaonjjpmcabpnbdmojl
Description Makes WebP and AVIF recognizable on a webpage.
Taille du Fichier 61.33 KB
Nombre d'Installations 2,417
Version Actuelle 1.91.1
Dernière Mise à Jour 2022-09-02
Date de Publication 2018-11-20
Évaluation 4.00/5 Total 1 Évaluations
Développeur webp-highlighter
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://developers.google.com/speed/webp/
URL de la Page d'Aide https://groups.google.com/a/webmproject.org/forum/#!forum/webp-discuss
Langues Prises en Charge 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": [
        ""
    ]
}