WebP and AVIF Highlighter

Makes WebP and AVIF recognizable on a webpage.

什么是WebP and AVIF Highlighter?

WebP and AVIF Highlighter是由webp-highlighter开发的Chrome扩展程序,该扩展的主要功能是“Makes WebP and AVIF recognizable on a webpage.”。

扩展截图

screenshot

下载WebP and AVIF Highlighter扩展crx文件

下载WebP and AVIF Highlighter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 WebP and AVIF Highlighter WebP and AVIF Highlighter
ID aonapkfkfneahhaonjjpmcabpnbdmojl
官方URL https://chromewebstore.google.com/detail/webp-and-avif-highlighter/aonapkfkfneahhaonjjpmcabpnbdmojl
简介 Makes WebP and AVIF recognizable on a webpage.
文件大小 61.33 KB
安装次数 2,417
当前版本 1.91.1
更新时间 2022-09-02
上架时间 2018-11-20
评分 4.00/5 共1次评分
开发者 webp-highlighter
电子邮箱 [email protected]
付费类型 free
扩展官网 https://developers.google.com/speed/webp/
帮助页面URL https://groups.google.com/a/webmproject.org/forum/#!forum/webp-discuss
支持的语言 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": [
        ""
    ]
}