Slack Toggle

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

Hvad er Slack Toggle?

Slack Toggle er en Chrome-udvidelse udviklet af http://keiruaprod.fr, og dens hovedfunktion er "Adds the possibility to toggle the display of a section in slack".

Udvidelsesskærmbilleder

screenshot

Download Slack Toggle-udvidelses-CRX-fil

Download Slack Toggle-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Slack Toggle Slack Toggle
ID ddcippobpbmaanbnaeapbelmjopbahli
Officiel URL https://chrome.google.com/webstore/detail/slack-toggle/ddcippobpbmaanbnaeapbelmjopbahli
Beskrivelse Adds the possibility to toggle the display of a section in slack
Filstørrelse 127 KB
Antal Installationer 26
Nuværende Version 1.0
Senest Opdateret 2015-01-14
Udgivelsesdato 2015-01-14
Udvikler http://keiruaprod.fr
Betalingsmetode free
Understøttede Sprog 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'"
}