Messenger Unread
Check messenger without the stress. Don't send typing indicators or read receipts. Free & open source, only 30 lines of code.
什么是Messenger Unread?
Messenger Unread是由https://unread.chat开发的Chrome扩展程序,该扩展的主要功能是“Check messenger without the stress. Don't send typing indicators or read receipts. Free & open source, only 30 lines of code.”。
扩展截图
下载Messenger Unread扩展crx文件
下载Messenger Unread扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        As of December 2020 this extension no longer works 😭 Facebook changed how they fetch messages and it's now harder to disable read receipts. If you have any ideas on how to fix it, let me know on github: https://github.com/raphaelrk/messenger-lowkey
--
Check messenger without the stress. Don't send typing indicators or read receipts. 
🤫 Don't show people you've read their message or when you're typing
❤️ We're firm believers in data privacy and don't collect or share any data.
💻 Free and open source. Only thirty lines of code, and easy to install yourself.
Before 😭 You have messages but don't check them, leading to long response times
After 😍 Read and reply to messages as soon as you get them without pressure
👋 Texting should be relaxed
Read receipts and typing indicators optimize for engagement, not comfort. By making your actions more private, we make it easier to read and respond.                     扩展基本信息
| 名称 |  | 
| ID | pacafepjegmgiiidkgofifmfcjfdkpea | 
| 官方URL | https://chromewebstore.google.com/detail/messenger-unread/pacafepjegmgiiidkgofifmfcjfdkpea | 
| 简介 | Check messenger without the stress. Don't send typing indicators or read receipts. Free & open source, only 30 lines of code. | 
| 文件大小 | 199 KB | 
| 安装次数 | 1,284 | 
| 当前版本 | 1.3.4 | 
| 更新时间 | 2021-05-06 | 
| 上架时间 | 2020-02-18 | 
| 评分 | 2.20/5 共5次评分 | 
| 开发者 | https://unread.chat | 
| 电子邮箱 | [email protected] | 
| 付费类型 | free | 
| 扩展官网 | http://unread.chat/ | 
| 支持的语言 | en | 
| manifest.json | |
| {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Messenger Unread",
    "short_name": "Messenger Unread",
    "description": "Check messenger without the stress. Don't send typing indicators or read receipts. Free & open source, only 30 lines of code.",
    "version": "1.3.4",
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*.facebook.com\/*",
        "*:\/\/*.messenger.com\/*"
    ],
    "icons": {
        "32": "images\/icon_32.png",
        "128": "images\/icon_128.png",
        "256": "images\/icon_256.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "images\/icon_128.png"
    }
} | |