Slack Toggle

Adds the possibility to toggle the display of a section in slack

什麼是Slack Toggle?

Slack Toggle是由http://keiruaprod.fr開發的Chrome擴展程式,該擴展的主要功能是“Adds the possibility to toggle the display of a section in slack”。

擴展截圖

screenshot

下載Slack Toggle擴展crx文件

下載Slack Toggle擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension allows you to toggle the display of the elements of the different categories of channels : starred, channels, direct messages and private groups.                    

擴展基本資訊

名稱 Slack Toggle Slack Toggle
ID ddcippobpbmaanbnaeapbelmjopbahli
官方網址 https://chrome.google.com/webstore/detail/slack-toggle/ddcippobpbmaanbnaeapbelmjopbahli
簡介 Adds the possibility to toggle the display of a section in slack
檔案大小 127 KB
安裝次數 26
目前版本 1.0
更新時間 2015-01-14
上架時間 2015-01-14
開發者 http://keiruaprod.fr
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Slack Toggle",
    "description": "Adds the possibility to toggle the display of a section in slack",
    "version": "1.0",
    "permissions": [
        "tabs",
        "http:\/\/*.slack.com\/",
        "https:\/\/*.slack.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.slack.com\/*",
                "https:\/\/*.slack.com\/*"
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "slack-toggle.js"
            ]
        }
    ],
    "manifest_version": 2,
    "icons": {
        "48": "pictures\/slack-toggle-logo.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}