Clear Text in Fog

First, blur the entire text. Then, selected parts are clearly displayed.

O que é Clear Text in Fog?

Clear Text in Fog é uma extensão do Chrome desenvolvida por https://nackpan.net, e sua principal característica é "First, blur the entire text. Then, selected parts are clearly displayed.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Clear Text in Fog

Baixe arquivos de extensão Clear Text in Fog 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

                        First, click the extension icon and a blur button will pop up. Click the blur button to blur the entire text. After that, the selected part will be unblurred and displayed clearly.

This is an extension that is useful for language learners. Intended for use on websites that provide audio and transcripts for language learners. 

This extension does not collect and transmit your personally identifiable information.                    

Informações Básicas da Extensão

Nome Clear Text in Fog Clear Text in Fog
ID kbeclijbmkjpkeickobnhlemaegkjlcf
URL Oficial https://chromewebstore.google.com/detail/clear-text-in-fog/kbeclijbmkjpkeickobnhlemaegkjlcf
Descrição First, blur the entire text. Then, selected parts are clearly displayed.
Tamanho do Arquivo 26.94 KB
Contagem de Instalações 22
Versão Atual 1.1.1
Última Atualização 2022-04-29
Data de Publicação 2022-04-29
Desenvolvedor https://nackpan.net
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://nackpan.net/blog/en/clear-text-in-fog/
URL da Página de Política de Privacidade https://nackpan.net/blog/en/clear_text_in_fog-privacy-policy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Clear Text in Fog",
    "description": "First, blur the entire text. Then, selected parts are clearly displayed.",
    "version": "1.1.1",
    "manifest_version": 3,
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/blurred_text16.png",
            "32": "\/images\/blurred_text32.png",
            "48": "\/images\/blurred_text48.png",
            "128": "\/images\/blurred_text128.png"
        }
    },
    "icons": {
        "16": "\/images\/blurred_text16.png",
        "32": "\/images\/blurred_text32.png",
        "48": "\/images\/blurred_text48.png",
        "128": "\/images\/blurred_text128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}