Shoot the Messenger
This extension sequentially unsends all messenges in a messenger chain.
Shoot the Messenger क्या है?
Shoot the Messenger amol द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension sequentially unsends all messenges in a messenger chain."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Shoot the Messenger एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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/ |
सहायता पृष्ठ 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": [ " |