Slack Toggle

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

O que é Slack Toggle?

Slack Toggle é uma extensão do Chrome desenvolvida por http://keiruaprod.fr, e sua principal característica é "Adds the possibility to toggle the display of a section in slack".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Slack Toggle

Baixe arquivos de extensão Slack Toggle no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Slack Toggle Slack Toggle
ID ddcippobpbmaanbnaeapbelmjopbahli
URL Oficial https://chrome.google.com/webstore/detail/slack-toggle/ddcippobpbmaanbnaeapbelmjopbahli
Descrição Adds the possibility to toggle the display of a section in slack
Tamanho do Arquivo 127 KB
Contagem de Instalações 26
Versão Atual 1.0
Última Atualização 2015-01-14
Data de Publicação 2015-01-14
Desenvolvedor http://keiruaprod.fr
Tipo de Pagamento free
Idiomas Suportados 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'"
}