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",
"manifest_version": 3,
"name": "Slack Message and Email Extractor",
"version": "1.0",
"description": "Extract messages and user emails from any Slack channel without requiring admin access",
"author": "[email protected]",
"homepage_url": "https:\/\/avansaber.com",
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
},
"permissions": [
"activeTab",
"scripting",
"downloads",
"identity",
"storage"
],
"host_permissions": [
"https:\/\/*.slack.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/*.slack.com\/*"
],
"js": [
"content.js"
]
}
],
"oauth2": {
"client_id": "1042338872721-qu9amc2mtbm8qi69kr5tg48akef4ksdk.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/userinfo.email"
]
}
}