BlurImage

This extension will blur all images in img tags on the page. Can whitelist by domains

ما هو BlurImage؟

BlurImage هو إضافة Chrome تم تطويرها بواسطة dliu، والميزة الرئيسية لها هي "This extension will blur all images in img tags on the page. Can whitelist by domains".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة BlurImage

قم بتنزيل ملفات الامتداد BlurImage بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Blur images from web pages

The Blur Images extension will blur out any images and videos. This extension is useful for when you are at work or any other place where you might not want everyone around you to see your images and videos from your private pages. Can whitelist pages.                    

معلومات أساسية عن التمديد

الاسم BlurImage BlurImage
ID obgehdjfdokhbmbgdkaklcphepdhombh
عنوان URL الرسمي https://chromewebstore.google.com/detail/blurimage/obgehdjfdokhbmbgdkaklcphepdhombh
الوصف This extension will blur all images in img tags on the page. Can whitelist by domains
حجم الملف 24.03 KB
عدد التثبيتات 122
النسخة الحالية 0.0.8
آخر تحديث 2024-02-13
تاريخ النشر 2024-02-05
تقييم 5.00/5 مجموع تقييمات 2
المطور dliu
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BlurImage",
    "description": "This extension will blur all images in img tags on the page. Can whitelist by domains",
    "version": "0.0.8",
    "icons": {
        "16": "assets\/icon-16.png",
        "48": "assets\/icon-48.png",
        "128": "assets\/icon-128.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "action": {
        "default_icon": {
            "16": "assets\/icon-16.png",
            "48": "assets\/icon-48.png",
            "128": "assets\/icon-128.png"
        },
        "default_title": "BlurImage",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "filter.js"
            ],
            "run_at": "document_start"
        }
    ],
    "manifest_version": 3
}