Clear Text in Fog

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

什麼是Clear Text in Fog?

Clear Text in Fog是由https://nackpan.net開發的Chrome擴展程式,該擴展的主要功能是“First, blur the entire text. Then, selected parts are clearly displayed.”。

擴展截圖

screenshot
screenshot
screenshot

下載Clear Text in Fog擴展crx文件

下載Clear Text in Fog擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Clear Text in Fog Clear Text in Fog
ID kbeclijbmkjpkeickobnhlemaegkjlcf
官方網址 https://chromewebstore.google.com/detail/clear-text-in-fog/kbeclijbmkjpkeickobnhlemaegkjlcf
簡介 First, blur the entire text. Then, selected parts are clearly displayed.
檔案大小 26.94 KB
安裝次數 22
目前版本 1.1.1
更新時間 2022-04-29
上架時間 2022-04-29
開發者 https://nackpan.net
電子郵箱 [email protected]
付費類型 free
擴展官網 https://nackpan.net/blog/en/clear-text-in-fog/
隱私政策頁面URL https://nackpan.net/blog/en/clear_text_in_fog-privacy-policy
支援的語言 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"
            ]
        }
    ]
}