Privacy Extension For Telegram Web

Hides your messages until you hover over them.

Privacy Extension For Telegram Web là gì?

Privacy Extension For Telegram Web là một tiện ích mở rộng Chrome được phát triển bởi lucasldemorais, và tính năng chính của nó là "Hides your messages until you hover over them.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Privacy Extension For Telegram Web

Tải xuống các tệp mở rộng Privacy Extension For Telegram Web dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        I WAS FEELLING A BIT LAZY AND I USED SOME OF LUKAS LEN's ORIGINAL TEXT. PLEASE, GO CHECK THIS "GOD ON EARTH"'s WORK AT: https://github.com/LukasLen or at https://lukaslen.com

# Ancestor of this extension: Privacy Extension For WhatsApp™ Web by Lucas Len (https://github.com/LukasLen/Privacy-Extension-For-Whatsapp-Web)!

The Privacy Extension For Telegram™ Web hides your messages from unwanted glimpses until you hover over them. In the search bar, you can disable the blur effect on all messages manually and specify what elements to blur.

**Your options:**
- All messages in chat: *Blurs all messages in the current chat.*
- Last messages preview: *Blurs all message previews on the left.*
- Media preview: *Blurs all images, videos, ... in separation from the text.*
- Media gallery: *Blurs all small icons of images, videos, ... while viewing an image, video, ...*
- Text input: *Makes the color in your input field lighter to make it hard to read.*
- Profile pictures: *Blurs all profile pictures.*
- Group/Users names: *Blurs all group and usernames.*
- No transition delay: *Allows you to turn off the delay before revealing an item on hover.*

## Installation
Available for both Chrome and Firefox.

### For development purposes on Chrome
- Download the newest release [here](https://github.com/LukasLen/Privacy-Extension-For-WhatsApp-Web/releases) and unzip it
- Navigate to chrome://extensions/
- Activate the developer mode (on the top right)
- Click on "Load Unpacked"
- Select the "/chrome" folder from your unzipped download (this folder has to be persistent so you might want to keep it somewhere where you won't delete it)
- Check back here for new releases

## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details

### Acknowledgments
- [Eye Icon](https://www.iconfinder.com/icons/1608687/eye_slash_icon)


---
> ***Disclaimer:*** *Telegram is a trademark of Telegram FZ-LLC.inc, registered in Russia and other countries. This extension is an independent project developed by Lucas Morais as a fork of Lukas Len's Privacy Extension For WhatsApp Web (https://github.com/LukasLen/Privacy-Extension-For-WhatsApp-Web) and has no relationship to Telegram or Telegram FZ-LLC.inc*                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Privacy Extension For Telegram Web Privacy Extension For Telegram Web
ID fmppgkhgpjakiigckmjaebihbgpmmlan
URL Chính Thức https://chrome.google.com/webstore/detail/privacy-extension-for-tel/fmppgkhgpjakiigckmjaebihbgpmmlan
Mô tả Hides your messages until you hover over them.
Kích Thước Tệp 21.54 KB
Số Lần Cài Đặt 1,000
Phiên Bản Hiện Tại 0.5.2
Cập Nhật Lần Cuối 2019-11-08
Ngày Phát Hành 2019-11-08
Đánh Giá 1.20/5 Tổng số 5 Đánh Giá
Nhà Phát Triển lucasldemorais
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Privacy Extension For Telegram Web",
    "version": "0.5.2",
    "description": "Hides your messages until you hover over them.",
    "permissions": [
        "declarativeContent",
        "activeTab",
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "css\/messages.css",
        "css\/messagesPreview.css",
        "css\/mediaPreview.css",
        "css\/mediaGallery.css",
        "css\/textInput.css",
        "css\/profilePic.css",
        "css\/name.css",
        "css\/noDelay.css"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.telegram.org\/*"
            ],
            "js": [
                "load.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "images\/logo_16.png",
            "32": "images\/logo_32.png",
            "48": "images\/logo_48.png",
            "128": "images\/logo_128.png"
        }
    },
    "icons": {
        "16": "images\/logo_16.png",
        "32": "images\/logo_32.png",
        "48": "images\/logo_48.png",
        "128": "images\/logo_128.png"
    },
    "manifest_version": 2
}