Visibilize

Remove all blurred contents and remove all page level overlays

ما هو Visibilize؟

Visibilize هو إضافة Chrome تم تطويرها بواسطة fiddlest، والميزة الرئيسية لها هي "Remove all blurred contents and remove all page level overlays".

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

screenshot

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

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

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

                        A growing number of websites use the blur effect to hide the information that shows only logged-in users and also show full page overlay with the sign-up popup, which makes the site unusable. However, people want to quickly check some information and leave instead of going through the sign-up process.

The developers can view and remove the elements on the page by developer tools. However, most people can bypass.

This extension allows you to remove the blurry effect and remove full page popups.
However, this extension cannot show data if they use fake data under the blurred item.                    

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

الاسم Visibilize Visibilize
ID cepdgdncnnflfcmahndoefpkljnnebmn
عنوان URL الرسمي https://chromewebstore.google.com/detail/visibilize/cepdgdncnnflfcmahndoefpkljnnebmn
الوصف Remove all blurred contents and remove all page level overlays
حجم الملف 172 KB
عدد التثبيتات 1,190
النسخة الحالية 1.0
آخر تحديث 2021-12-23
تاريخ النشر 2021-12-22
تقييم 5.00/5 مجموع تقييمات 2
المطور fiddlest
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Visibilize",
    "description": "Remove all blurred contents and remove all page level overlays",
    "version": "1.0",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html",
        "default_title": "Reveal blurry contents and hide page overlays"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                ".\/static\/js\/content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "magic-wand-16.png",
        "48": "magic-wand-48.png",
        "128": "magic-wand-128.png"
    }
}