Who deleted me ?

This extension sends notifications everytime you get unfriended from Facebook.

Who deleted me ?란 무엇입니까?

Who deleted me ?은(는) crissleb386에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension sends notifications everytime you get unfriended from Facebook."입니다.

확장 프로그램 스크린샷

screenshot

Who deleted me ? 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Get alerted when someone unfriends your from Facebook. It can also report who deactivate his account.

DISCLAIMER !!!
This extension is NOT developper or related (to/by) Facebook(tm) team. It is developped independently to add some feature to Facebook(tm).

IMPORTANT !!!
When you install the extension, it saves all your friendlist (id and names of your friends), you ID and your name in your browser storage. In other words, we DO NOT SAVE ANY SENSITIVE DATA in our server. This means your data is SAFE 100%. NO WORRIES.
*
This app only shows who unfriended you AFTER installing the extension. IT CAN'T show who deleted you before the installation.

ALL YOUR DATA IS STORED LOCALLY.

* Unfriend Finder for Facebook.
* Who Deleted Me on Facebook ?
* Unfriending.
* Deleted Facebook Friends

Privacy URL: https://who-unfriend.me/privay.txt                    

확장 프로그램 기본 정보

이름 Who deleted me ? Who deleted me ?
ID lmkepljhcelkkbibdkmcgojkfhmibpco
공식 URL https://chromewebstore.google.com/detail/who-deleted-me/lmkepljhcelkkbibdkmcgojkfhmibpco
설명 This extension sends notifications everytime you get unfriended from Facebook.
파일 크기 30.19 KB
설치 횟수 6,332
현재 버전 3.2.0
최근 업데이트 2024-01-10
출시 날짜 2019-09-17
평점 2.43/5 총 63 개의 평점
개발자 crissleb386
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://who-unfriend.me/privacy.txt
지원되는 언어 de,en,fr,es,it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "__MSG_appDesc__",
    "version": "3.2.0",
    "name": "__MSG_appName__",
    "default_locale": "en",
    "manifest_version": 3,
    "action": {
        "default_title": "Who deleted me ?"
    },
    "icons": {
        "48": ".\/icons\/ic_48.png",
        "128": ".\/icons\/ic_128.png"
    },
    "background": {
        "service_worker": "background-wrapper.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/deleted.miinosoft.com\/history.html"
            ],
            "js": [
                "history.bundle.js"
            ]
        },
        {
            "matches": [
                "https:\/\/deleted.miinosoft.com\/index.html",
                "https:\/\/deleted.miinosoft.com\/"
            ],
            "js": [
                "content.bundle.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "externally_connectable": {
        "matches": [
            "https:\/\/deleted.miinosoft.com\/*"
        ]
    },
    "permissions": [
        "alarms",
        "cookies",
        "storage",
        "notifications"
    ],
    "host_permissions": [
        "https:\/\/*.facebook.com\/*"
    ]
}