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.”。
擴展截圖
下載Unfriend Finder擴展crx文件
下載Unfriend Finder擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 擴展基本資訊
| 名稱 | |
| ID | olljnkilmblncgcghhaodkpdcnokhpah |
| 官方網址 | 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\/*"
]
}
} | |