Genius Disconnector
Remove inactive and deactivated friends from FB
Vad är Genius Disconnector?
Genius Disconnector är en Chrome-tillägg utvecklad av edakehurst, och dess huvudfunktion är "Remove inactive and deactivated friends from FB".
Tilläggsskärmbilder
Ladda ner Genius Disconnector-förlängningens CRX-fil
Ladda ner Genius Disconnector-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Genius Disconnector |
ID | efnhameebhmajhmadlgcpipoeeaejccb |
Officiell webbadress | https://chromewebstore.google.com/detail/genius-disconnector/efnhameebhmajhmadlgcpipoeeaejccb |
Beskrivning | Remove inactive and deactivated friends from FB |
Filstorlek | 1.56 MB |
Antal Installationer | 1,034 |
Aktuell Version | 2.0.39 |
Senast Uppdaterad | 2023-12-24 |
Publiceringsdatum | 2021-09-19 |
Betyg | 5.00/5 Totalt 3 Betyg |
Utvecklare | edakehurst |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://edakehurst.kartra.com/page/GeniusDisconnector |
Hjälpsida URL | https://edakehurst.kartra.com/help/HelpDesk |
URL till Sekretesspolicy Sidan | https://geniusposts.io/privacy-policy.html |
Stödda Språk | 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" } |