WebP and AVIF Highlighter

Makes WebP and AVIF recognizable on a webpage.

WebP and AVIF Highlighterคืออะไร?

WebP and AVIF Highlighter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย webp-highlighter และคุณลักษณะหลักของมันคือ "Makes WebP and AVIF recognizable on a webpage."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WebP and AVIF Highlighter

ดาวน์โหลดไฟล์ส่วนขยาย 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": [
        ""
    ]
}