Slack Members Extractor
It's a tool allows to export list of members (names, Emails, phone numbers, titles) to csv/xlsx from Slack channel
Qu'est-ce que Slack Members Extractor ?
Slack Members Extractor est une extension Chrome développée par https://hypercavs.com, et sa fonction principale est "It's a tool allows to export list of members (names, Emails, phone numbers, titles) to csv/xlsx from Slack channel".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Slack Members Extractor
Téléchargez les fichiers d'extension Slack Members Extractor au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
▬▬▬▬▬▬ Features ▬▬▬▬▬▬ - Export Slack member names. - Export Slack member titles. - Export & download avatar pictures. - Export Slack member phone. - Export Slack member Skype. ▬▬▬▬▬▬ Get started ▬▬▬▬▬▬ 1. Install the extension. 2. Open a new tab and visit any Slack channel. 3. Click the extension icon then click 'GO'. 4. The downloading of csv/xlsx starts automatically when data loading is done, or you can click the button to save it manually. ▬▬▬▬▬▬ Terms of use ▬▬▬▬▬▬ https://hypercavs.com/member-exporter-for-slack/terms-of-use.html ▬▬▬▬▬▬ Support ▬▬▬▬▬▬ [email protected]
Informations de Base sur l'Extension
Nom | Slack Members Extractor |
ID | akdhbbkdglodgfmnjejdhagnoaldihjl |
URL Officiel | https://chromewebstore.google.com/detail/slack-members-extractor/akdhbbkdglodgfmnjejdhagnoaldihjl |
Description | It's a tool allows to export list of members (names, Emails, phone numbers, titles) to csv/xlsx from Slack channel |
Taille du Fichier | 949 KB |
Nombre d'Installations | 228 |
Version Actuelle | 1.0.2 |
Dernière Mise à Jour | 2021-07-26 |
Date de Publication | 2021-05-02 |
Évaluation | 3.33/5 Total 3 Évaluations |
Développeur | https://hypercavs.com |
[email protected] | |
Type de Paiement | in_app |
Site Web de l'Extension | https://hypercavs.com/member-exporter-for-slack/ |
URL de la Page de Politique de Confidentialité | http://www.hypercavs.com/shopify-shark/privacy-policy.html |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Slack Members Extractor", "description": "It's a tool allows to export list of members (names, Emails, phone numbers, titles) to csv\/xlsx from Slack channel", "version": "1.0.2", "manifest_version": 2, "icons": { "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "browser_action": { "default_title": "Slack Members Extractor", "default_popup": "popup\/popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/app.slack.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "background": { "scripts": [ "background\/background.js" ] }, "permissions": [ "activeTab", "https:\/\/edgeapi.slack.com\/", "https:\/\/ca.slack-edge.com\/", "https:\/\/hypercavs.com\/", "storage", "downloads" ] } |