Visibilize

Remove all blurred contents and remove all page level overlays

Qu'est-ce que Visibilize ?

Visibilize est une extension Chrome développée par fiddlest, et sa fonction principale est "Remove all blurred contents and remove all page level overlays".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Visibilize

Téléchargez les fichiers d'extension Visibilize au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Visibilize Visibilize
ID cepdgdncnnflfcmahndoefpkljnnebmn
URL Officiel https://chromewebstore.google.com/detail/visibilize/cepdgdncnnflfcmahndoefpkljnnebmn
Description Remove all blurred contents and remove all page level overlays
Taille du Fichier 172 KB
Nombre d'Installations 1,190
Version Actuelle 1.0
Dernière Mise à Jour 2021-12-23
Date de Publication 2021-12-22
Évaluation 5.00/5 Total 2 Évaluations
Développeur fiddlest
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}