2Bound
2Bound is an extension for Facebook Group Admins to export group member details.
Что такое 2Bound?
2Bound - это расширение Chrome, разработанное 2Bound, и его основная функция - "2Bound is an extension for Facebook Group Admins to export group member details.".
Снимки экрана расширения
Скачать файл CRX расширения 2Bound
Скачайте файлы расширений 2Bound в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
2Bound helps facebook group admins to communicate and engage better with the community members. It saves public details (location, education, job title) of the members and show in a dashboard for you to analyse. Thus you can understand more about your community demographics and share more useful content. The best thing is you can also save answers given by members when they ask to join your facebook group. Saving those answers was a big pain us and soon we realised it’s a big pain for all other admins. That’s why we created 2Bound.
Основная информация о расширении
Название | 2Bound |
ID | elgonccahakdjkiihfnbbjahedjjledb |
Официальный URL | https://chromewebstore.google.com/detail/2bound/elgonccahakdjkiihfnbbjahedjjledb |
Описание | 2Bound is an extension for Facebook Group Admins to export group member details. |
Размер файла | 237 KB |
Количество установок | 19 |
Текущая Версия | 1.0.5 |
Последнее Обновление | 2018-12-07 |
Дата публикации | 2018-12-07 |
Рейтинг | 4.00/5 Всего 4 оценок |
Разработчик | 2Bound |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы политики конфиденциальности | https://2bound.com |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "2Bound", "version": "1.0.5", "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "description": "2Bound is an extension for Facebook Group Admins to export group member details.", "browser_action": { "default_title": "2Bound", "default_popup": "\/browser_action\/browser_action.html" }, "icons": { "16": "icons\/icon.png", "48": "icons\/icon2x.png", "128": "icons\/icon3x.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.facebook.com\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ ".\/main.js" ], "persistent": false }, "homepage_url": "https:\/\/2bound.com", "short_name": "2Bound", "permissions": [ "identity", "https:\/\/*.auth0.com\/*", "notifications", "storage", "tabs" ] } |