Unfriend Finder

This extension sends a notification when someone deletes you from Facebook.

Unfriend Finder란 무엇입니까?

Unfriend Finder은(는) https://unfriend-app.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension sends a notification when someone deletes you from Facebook."입니다.

확장 프로그램 스크린샷

screenshot

Unfriend Finder 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension sends to Facebook users notifications when someone unfriends them from Facebook. By Clicking on the notification users will find out who deleted them.
---------------
Who removed me on facebook?
Who deleted me on Facebook?
Facebook Friend List checker                    

확장 프로그램 기본 정보

이름 Unfriend Finder Unfriend Finder
ID olljnkilmblncgcghhaodkpdcnokhpah
공식 URL https://chromewebstore.google.com/detail/unfriend-finder/olljnkilmblncgcghhaodkpdcnokhpah
설명 This extension sends a notification when someone deletes you from Facebook.
파일 크기 137 KB
설치 횟수 54,997
현재 버전 4.1.2
최근 업데이트 2024-01-30
출시 날짜 2020-06-20
평점 3.17/5 총 485 개의 평점
개발자 https://unfriend-app.com
이메일 [email protected]
결제 유형 in_app
개인정보 보호 정책 페이지 URL https://unfriend-app.com/privacy.txt
지원되는 언어 de,en,en-GB,en-US,fr,es,it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "4.1.2",
    "icons": {
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "100": "icons\/icon_100.png",
        "128": "icons\/icon_128.png"
    },
    "action": {
        "default_icon": "icons\/icon_32.png",
        "default_title": "Unfriend Finder",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/unfriend.miinosoft.com\/*",
                "https:\/\/www.unfriend-app.com\/NEW\/index.html"
            ],
            "run_at": "document_end",
            "js": [
                "main.js"
            ]
        },
        {
            "matches": [
                "https:\/\/unfriend.miinosoft.com\/history",
                "https:\/\/www.unfriend-app.com\/NEW\/history.html"
            ],
            "run_at": "document_end",
            "js": [
                "hist.js"
            ]
        }
    ],
    "permissions": [
        "notifications",
        "cookies",
        "storage",
        "alarms"
    ],
    "host_permissions": [
        "https:\/\/*.facebook.com\/*",
        "https:\/\/www.unfriend-app.com\/*"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/unfriend.miinosoft.com\/*",
            "https:\/\/www.unfriend-app.com\/*"
        ]
    }
}