Shoot the Messenger
This extension sequentially unsends all messenges in a messenger chain.
ما هو Shoot the Messenger؟
Shoot the Messenger هو إضافة Chrome تم تطويرها بواسطة amol، والميزة الرئيسية لها هي "This extension sequentially unsends all messenges in a messenger chain.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Shoot the Messenger
قم بتنزيل ملفات الامتداد Shoot the Messenger بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
(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/ |
عنوان صفحة المساعدة | 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": [ " |