Visibilize

Remove all blurred contents and remove all page level overlays

Visibilize क्या है?

Visibilize fiddlest द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Remove all blurred contents and remove all page level overlays"।

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

screenshot

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

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