Telegram Blur

Blur and Hides your messages on Telegram until you hover over them.

Telegram Blur란 무엇입니까?

Telegram Blur은(는) kirwako에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Blur and Hides your messages on Telegram until you hover over them."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Telegram Blur 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Blur and Hides your messages on Telegram until you hover over them.

To increase privacy in public spaces the Telegram Blur Extension For Telegram Web blurs your messages as well as other content.

And only reveals one when you hover over it with your mouse cursor. Additionally, you can quickly toggle all effects by using a keyboard shortcut (Alt+X) or by clicking the toggle button in the extension menu.

It adapts to your needs by letting you decide which elements you want to blur. Your options:
- Blurs all messages in the current chat.
- Blurs all message previews on the left.
-  Blurs all images, videos, stickers, ... in separation from the text.
- Blurs all small icons of images, videos, ... while viewing an image, video, ...
- Makes the color in your input field lighter to make it hard to read.
- Blurs all profile pictures.
- Blurs all groups and users names.
- Allows you to turn off the delay before revealing an item on hover.
- Unblurs all elements when you hover over the Telegram Web app.


---
This extension does not collect information about you or your messages.

Disclaimer: Telegram is a trademark of Telegram Inc., registered in the U.S. and other countries. This extension is an independent project developed by Imran Baali aka kirwako and has no relationship to Telegram or Telegram Inc.                    

확장 프로그램 기본 정보

이름 Telegram Blur Telegram Blur
ID jlkmjnjncpcplnajcbibddpkmbficecj
공식 URL https://chromewebstore.google.com/detail/telegram-blur/jlkmjnjncpcplnajcbibddpkmbficecj
설명 Blur and Hides your messages on Telegram until you hover over them.
파일 크기 34.82 KB
설치 횟수 5,442
현재 버전 1.0.5
최근 업데이트 2023-01-26
출시 날짜 2022-09-29
평점 4.83/5 총 6 개의 평점
개발자 kirwako
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://old.kirwako.com/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Telegram Blur",
    "version": "1.0.5",
    "description": "Blur and Hides your messages on Telegram until you hover over them.",
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/web.telegram.org\/"
    ],
    "optional_host_permissions": [
        "*:\/\/*\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/statusOn.png",
                "images\/statusOff.png",
                "css\/messages.css",
                "css\/messagesPreview.css",
                "css\/lastMessages.css",
                "css\/mediaPreview.css",
                "css\/mediaGallery.css",
                "css\/textInput.css",
                "css\/profilePic.css",
                "css\/name.css",
                "css\/noDelay.css",
                "css\/unblurActive.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.telegram.org\/*"
            ],
            "js": [
                "load.js"
            ]
        }
    ],
    "action": {
        "default_title": "Telegram Blur Web",
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png"
        }
    },
    "commands": {
        "toggle": {
            "suggested_key": {
                "default": "Alt+X"
            },
            "description": "Toggle On\/Off"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 3
}