Telegram Blur

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

Что такое Telegram Blur?

Telegram Blur - это расширение Chrome, разработанное kirwako, и его основная функция - "Blur and Hides your messages on Telegram until you hover over them.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Telegram Blur

Скачайте файлы расширений Telegram Blur в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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
}