SO Chat Commander

This extension acts as an aide for StackExchange Chat users and provides different local commands to help you!

SO Chat Commander क्या है?

SO Chat Commander Tristan Wiley द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension acts as an aide for StackExchange Chat users and provides different local commands to help you!"।

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

screenshot

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

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

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

                        Chat Commander is a client side Chrome extension that integrates commands for your use on any Stackexchange Chat.

So far there are these commands here

/collapse
/uncollapse
/giphy 
/shruggie
/replyLast  
/cat 
/dog
/kiddo
/tableflip
/disapprove

So, collapse and uncollapse are self-explanatory, they take any onebox chat message (Wikipedia, SO Question/Answer, Youtube, Image, etc.) and collapse it

/giphy will send a Gifs to the chat according to anything you send after it.

/shruggie will send a ¯\(ツ)/¯

/replyLast will reply to the last message sent with the message .

/cat will post a random cat picture
/dog will post a random cat picture                    

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

नाम SO Chat Commander SO Chat Commander
ID ncmenjdhegdnihapnlejhfmhkjofppdc
आधिकारिक URL https://chromewebstore.google.com/detail/so-chat-commander/ncmenjdhegdnihapnlejhfmhkjofppdc
विवरण This extension acts as an aide for StackExchange Chat users and provides different local commands to help you!
फ़ाइल का आकार 18.74 KB
स्थापना संख्या 12
वर्तमान संस्करण 1.79
अंतिम अपडेट 2019-04-27
प्रकाशन तिथि 2019-04-27
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर Tristan Wiley
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SO Chat Commander",
    "description": "This extension acts as an aide for StackExchange Chat users and provides different local commands to help you!",
    "version": "1.79",
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/chat.stackoverflow.com\/*",
                "*:\/\/chat.stackexchange.com\/*",
                "*:\/\/chat.meta.stackexchange.com\/*"
            ],
            "js": [
                "background.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "storage"
    ]
}