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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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": [ " |