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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
            ]
        }
    ]
}