Slack Toggle Sidebar

Toggle show or hide Slack's channel sidebar

Slack Toggle Sidebar क्या है?

Slack Toggle Sidebar https://marlosoft.net द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Toggle show or hide Slack's channel sidebar"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Slack Toggle Sidebar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Toggle Slack's sidebar display
- Show or hide channel sidebar
- Changed shortcut to Ctrl+Shift+S                    

एक्सटेंशन की मूल जानकारी

नाम Slack Toggle Sidebar Slack Toggle Sidebar
ID falbhdlejfolflphlfnkkpdmialebkdl
आधिकारिक URL https://chromewebstore.google.com/detail/slack-toggle-sidebar/falbhdlejfolflphlfnkkpdmialebkdl
विवरण Toggle show or hide Slack's channel sidebar
फ़ाइल का आकार 21.2 KB
स्थापना संख्या 182
वर्तमान संस्करण 4.1.0
अंतिम अपडेट 2020-06-06
प्रकाशन तिथि 2020-06-06
रेटिंग 2.92/5 कुल 13 रेटिंग्स
डेवलपर https://marlosoft.net
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/marlosoft/slack-toggle-sidebar
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Slack Toggle Sidebar",
    "version": "4.1.0",
    "manifest_version": 2,
    "short_name": "slack-toggle-sidebar",
    "description": "Toggle show or hide Slack's channel sidebar",
    "icons": {
        "128": "icon\/128.png"
    },
    "permissions": [
        "https:\/\/*.slack.com\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*.slack.com\/*"
            ],
            "js": [
                "js\/content_script.js"
            ],
            "css": [
                "css\/app.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "css\/app.css"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "js\/background.js"
        ]
    },
    "commands": {
        "toggle-slack-sidebar": {
            "description": "Toggle show or hide Slack's channel sidebar",
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "MacCtrl+Shift+S"
            }
        }
    }
}