Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"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"
]
}