Shoot the Messenger
This extension sequentially unsends all messenges in a messenger chain.
什么是Shoot the Messenger?
Shoot the Messenger是由amol开发的Chrome扩展程序,该扩展的主要功能是“This extension sequentially unsends all messenges in a messenger chain.”。
扩展截图
下载Shoot the Messenger扩展crx文件
下载Shoot the Messenger扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
(Buy my gf a coffee: https://www.buymeacoffee.com/theahura -- I don't drink the stuff but she loves it) If you're like me, you've been on FB Messenger for over a decade. And if you're like me, you care about privacy. I wrote this extension to clean up my digital footprint. Unlike other extensions, which only hide the messages from the user's inbox, Shoot the Messenger will remove messages from the RECEIVER'S inbox as well. It's simple: you open a messenger thread on a desktop, press 'remove messages', and go get a coffee. While you're gone, the extension will scroll up through your messenger thread and automatically unsend every message. Unsending a message means that anyone in the thread will see 'X has unsent a message' instead of the original text of the message. Technical details: this extension doesn't send any information to any servers, or try to reverse-engineer Facebook's messenger API. Instead, it simply simulates mouse clicks on the UI as if a user was pressing buttons. The code can be found here: https://github.com/theahura/shoot-the-messenger/ I'll be posting updates on Twitter: https://twitter.com/theahura_
扩展基本信息
名称 | |
ID | lkhmjelfhkidbekjkghmbacoaolbcmep |
官方URL | https://chromewebstore.google.com/detail/shoot-the-messenger/lkhmjelfhkidbekjkghmbacoaolbcmep |
简介 | This extension sequentially unsends all messenges in a messenger chain. |
文件大小 | 108 KB |
安装次数 | 4,063 |
当前版本 | 6.0.2 |
更新时间 | 2023-09-20 |
上架时间 | 2021-03-24 |
评分 | 3.80/5 共46次评分 |
开发者 | amol |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/theahura/shoot-the-messenger/ |
帮助页面URL | https://github.com/theahura/shoot-the-messenger/ |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Shoot the Messenger", "description": "This extension sequentially unsends all messenges in a messenger chain.", "version": "6.0.2", "content_scripts": [ { "matches": [ "http:\/\/*.messenger.com\/*", "https:\/\/*.messenger.com\/*" ], "js": [ "main.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "submitSearch.js" ], "matches": [ " |