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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | Messenger Unread |
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" } } |