WebP and AVIF Highlighter

Makes WebP and AVIF recognizable on a webpage.

WebP and AVIF Highlighter क्या है?

WebP and AVIF Highlighter webp-highlighter द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes WebP and AVIF recognizable on a webpage."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में WebP and AVIF Highlighter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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": [
        ""
    ]
}