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 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/
عنوان صفحة المساعدة 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": [
        ""
    ]
}