Slack Panels
Add custom panels in your Slack
什麼是Slack Panels?
Slack Panels是由https://slack-panels.devo.fr開發的Chrome擴展程式,該擴展的主要功能是“Add custom panels in your Slack”。
擴展截圖
下載Slack Panels擴展crx文件
下載Slack Panels擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 ! 擴展基本資訊
| 名稱 | |
| ID | gdlgkmbcejiegkhahkpcoakckpflljek |
| 官方網址 | https://chrome.google.com/webstore/detail/slack-panels/gdlgkmbcejiegkhahkpcoakckpflljek |
| 簡介 | Add custom panels in your Slack |
| 檔案大小 | 108 KB |
| 安裝次數 | 48 |
| 目前版本 | 1.0.1 |
| 更新時間 | 2016-02-29 |
| 上架時間 | 2016-02-29 |
| 評分 | 3.00/5 共 2 次評分 |
| 開發者 | https://slack-panels.devo.fr |
| 付費類型 | free |
| 擴展官網 | https://slack-panels.devo.fr/ |
| 說明頁面URL | https://slack-panels.devo.fr/#manual |
| 支援的語言 | 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"
]
} | |