Genius Disconnector
Remove inactive and deactivated friends from FB
什么是Genius Disconnector?
Genius Disconnector是由edakehurst开发的Chrome扩展程序,该扩展的主要功能是“Remove inactive and deactivated friends from FB”。
扩展截图
下载Genius Disconnector扩展crx文件
下载Genius Disconnector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" } |