Visibilize

Remove all blurred contents and remove all page level overlays

O que é Visibilize?

Visibilize é uma extensão do Chrome desenvolvida por fiddlest, e sua principal característica é "Remove all blurred contents and remove all page level overlays".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Visibilize

Baixe arquivos de extensão Visibilize no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Visibilize Visibilize
ID cepdgdncnnflfcmahndoefpkljnnebmn
URL Oficial https://chromewebstore.google.com/detail/visibilize/cepdgdncnnflfcmahndoefpkljnnebmn
Descrição Remove all blurred contents and remove all page level overlays
Tamanho do Arquivo 172 KB
Contagem de Instalações 1,190
Versão Atual 1.0
Última Atualização 2021-12-23
Data de Publicação 2021-12-22
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor fiddlest
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}