Slack Panels
Add custom panels in your Slack
What is Slack Panels?
Slack Panels is a Chrome extension developed by https://slack-panels.devo.fr, and its main feature is "Add custom panels in your Slack".
Extension Screenshots
Download Slack Panels Extension CRX File
Download Slack Panels extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Make Slack more powerful and add custom panels in the sidebar. Check your email, keep an eye on your agenda. It's up to you !
Extension Basic Information
Name | Slack Panels |
ID | gdlgkmbcejiegkhahkpcoakckpflljek |
Official URL | https://chrome.google.com/webstore/detail/slack-panels/gdlgkmbcejiegkhahkpcoakckpflljek |
Description | Add custom panels in your Slack |
File Size | 108 KB |
Installation Count | 48 |
Current Version | 1.0.1 |
Last Updated | 2016-02-29 |
Publish Date | 2016-02-29 |
Rating | 3.00/5 Total 2 Ratings |
Developer | https://slack-panels.devo.fr |
Payment Type | free |
Extension Website | https://slack-panels.devo.fr/ |
Help Page URL | https://slack-panels.devo.fr/#manual |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Slack Panels", "description": "Add custom panels in your Slack", "version": "1.0.1", "author": "Julien Tilap LA VINH", "homepage_url": "https:\/\/slack-panels.devo.fr\/", "permissions": [ "activeTab" ], "icons": { "16": "icons\/icon016.png", "32": "icons\/icon032.png", "48": "icons\/icon048.png", "64": "icons\/icon064.png", "128": "icons\/icon128.png", "256": "icons\/icon256.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.slack.com\/*" ], "js": [ "background.js" ], "css": [ "style\/panels.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ "content\/setuppanel.html" ] } |