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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Shoot the Messenger 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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_                    

확장 프로그램 기본 정보

이름 Shoot the Messenger Shoot the Messenger
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": [
                ""
            ]
        }
    ],
    "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';"
    }
}