Unfriend Finder
This extension sends a notification when someone deletes you from Facebook.
Unfriend Finder क्या है?
Unfriend Finder https://unfriend-app.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension sends a notification when someone deletes you from Facebook."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Unfriend Finder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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\/*" ] } } |