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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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": [
        ""
    ]
}