Shoot the Messenger

This extension sequentially unsends all messenges in a messenger chain.

Shoot the Messenger là gì?

Shoot the Messenger là một tiện ích mở rộng Chrome được phát triển bởi amol, và tính năng chính của nó là "This extension sequentially unsends all messenges in a messenger chain.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Shoot the Messenger

Tải xuống các tệp mở rộng Shoot the Messenger dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        (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_                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Shoot the Messenger Shoot the Messenger
ID lkhmjelfhkidbekjkghmbacoaolbcmep
URL Chính Thức https://chromewebstore.google.com/detail/shoot-the-messenger/lkhmjelfhkidbekjkghmbacoaolbcmep
Mô tả This extension sequentially unsends all messenges in a messenger chain.
Kích Thước Tệp 108 KB
Số Lần Cài Đặt 4,063
Phiên Bản Hiện Tại 6.0.2
Cập Nhật Lần Cuối 2023-09-20
Ngày Phát Hành 2021-03-24
Đánh Giá 3.80/5 Tổng số 46 Đánh Giá
Nhà Phát Triển amol
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/theahura/shoot-the-messenger/
URL Trang Trợ Giúp https://github.com/theahura/shoot-the-messenger/
Ngôn Ngữ Được Hỗ Trợ 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": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*.messenger.com\/*",
        "https:\/\/*.messenger.com\/*"
    ],
    "icons": {
        "128": "icon.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';"
    }
}