WebP and AVIF Highlighter

Makes WebP and AVIF recognizable on a webpage.

WebP and AVIF Highlighter là gì?

WebP and AVIF Highlighter là một tiện ích mở rộng Chrome được phát triển bởi webp-highlighter, và tính năng chính của nó là "Makes WebP and AVIF recognizable on a webpage.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng WebP and AVIF Highlighter

Tải xuống các tệp mở rộng WebP and AVIF Highlighter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên WebP and AVIF Highlighter WebP and AVIF Highlighter
ID aonapkfkfneahhaonjjpmcabpnbdmojl
URL Chính Thức https://chromewebstore.google.com/detail/webp-and-avif-highlighter/aonapkfkfneahhaonjjpmcabpnbdmojl
Mô tả Makes WebP and AVIF recognizable on a webpage.
Kích Thước Tệp 61.33 KB
Số Lần Cài Đặt 2,417
Phiên Bản Hiện Tại 1.91.1
Cập Nhật Lần Cuối 2022-09-02
Ngày Phát Hành 2018-11-20
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển webp-highlighter
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://developers.google.com/speed/webp/
URL Trang Trợ Giúp https://groups.google.com/a/webmproject.org/forum/#!forum/webp-discuss
Ngôn Ngữ Được Hỗ Trợ 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": [
        ""
    ]
}