Genius Disconnector
Remove inactive and deactivated friends from FB
Genius Disconnector क्या है?
Genius Disconnector edakehurst द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Remove inactive and deactivated friends from FB"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Genius Disconnector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Evaluate engagement of your Friends and be able to easily remove people who are not engaging with your posts. You can also whitelist ones you never want to accidently delete.
एक्सटेंशन की मूल जानकारी
नाम | Genius Disconnector |
ID | efnhameebhmajhmadlgcpipoeeaejccb |
आधिकारिक URL | https://chromewebstore.google.com/detail/genius-disconnector/efnhameebhmajhmadlgcpipoeeaejccb |
विवरण | Remove inactive and deactivated friends from FB |
फ़ाइल का आकार | 1.56 MB |
स्थापना संख्या | 1,034 |
वर्तमान संस्करण | 2.0.39 |
अंतिम अपडेट | 2023-12-24 |
प्रकाशन तिथि | 2021-09-19 |
रेटिंग | 5.00/5 कुल 3 रेटिंग्स |
डेवलपर | edakehurst |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://edakehurst.kartra.com/page/GeniusDisconnector |
सहायता पृष्ठ URL | https://edakehurst.kartra.com/help/HelpDesk |
गोपनीयता नीति पृष्ठ URL | https://geniusposts.io/privacy-policy.html |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Genius Disconnector", "description": "Remove inactive and deactivated friends from FB", "version": "2.0.39", "icons": { "16": "images\/5f326f2af01f5b4338ccf597-Genius_Disconnector-1625571856191-small_icon.png", "48": "images\/5f326f2af01f5b4338ccf597-Genius_Disconnector-1625571856251-medium_icon.png", "128": "images\/5f326f2af01f5b4338ccf597-Genius_Disconnector-1625571856296-large_icon.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "all_frames": false, "css": [], "js": [ "content.js" ], "matches": [ "https:\/\/*.facebook.com\/*" ], "run_at": "document_end" } ], "action": { "default_popup": "popup.html", "default_title": "Genius Disconnector" }, "content_security_policy": { "extension_pages": "script-src 'self' ; object-src 'self'" }, "host_permissions": [ "https:\/\/*.facebook.com\/*", "https:\/\/api.frienddisconnector.com\/*", "https:\/\/*.amazonaws.com\/*", "*:\/\/*.frienddisconnector.com\/*" ], "permissions": [ "alarms", "storage", "unlimitedStorage" ], "web_accessible_resources": [ { "resources": [ "*.css", "*.html", "*.js", "*.map", "*.png", "*.svg" ], "matches": [ "https:\/\/*.facebook.com\/*" ] } ], "short_name": "GD" } |