Unfriend Finder
This extension sends a notification when someone deletes you from Facebook.
O que é Unfriend Finder?
Unfriend Finder é uma extensão do Chrome desenvolvida por https://unfriend-app.com, e sua principal característica é "This extension sends a notification when someone deletes you from Facebook.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Unfriend Finder
Baixe arquivos de extensão Unfriend Finder no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Unfriend Finder |
ID | olljnkilmblncgcghhaodkpdcnokhpah |
URL Oficial | https://chromewebstore.google.com/detail/unfriend-finder/olljnkilmblncgcghhaodkpdcnokhpah |
Descrição | This extension sends a notification when someone deletes you from Facebook. |
Tamanho do Arquivo | 137 KB |
Contagem de Instalações | 54,997 |
Versão Atual | 4.1.2 |
Última Atualização | 2024-01-30 |
Data de Publicação | 2020-06-20 |
Classificação | 3.17/5 Total de 485 Avaliações |
Desenvolvedor | https://unfriend-app.com |
[email protected] | |
Tipo de Pagamento | in_app |
URL da Página de Política de Privacidade | https://unfriend-app.com/privacy.txt |
Idiomas Suportados | 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\/*" ] } } |