Clear Text in Fog

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

Cos'è Clear Text in Fog?

Clear Text in Fog è un'estensione di Chrome sviluppata da https://nackpan.net, e la sua funzione principale è "First, blur the entire text. Then, selected parts are clearly displayed.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Clear Text in Fog

Scarica i file di estensione Clear Text in Fog in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Clear Text in Fog Clear Text in Fog
ID kbeclijbmkjpkeickobnhlemaegkjlcf
URL Ufficiale https://chromewebstore.google.com/detail/clear-text-in-fog/kbeclijbmkjpkeickobnhlemaegkjlcf
Descrizione First, blur the entire text. Then, selected parts are clearly displayed.
Dimensione del File 26.94 KB
Conteggio Installazioni 22
Versione Corrente 1.1.1
Ultimo Aggiornamento 2022-04-29
Data di Pubblicazione 2022-04-29
Sviluppatore https://nackpan.net
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://nackpan.net/blog/en/clear-text-in-fog/
URL della Pagina della Politica sulla Privacy https://nackpan.net/blog/en/clear_text_in_fog-privacy-policy
Lingue Supportate 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"
            ]
        }
    ]
}