SO Chat Commander

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

Cos'è SO Chat Commander?

SO Chat Commander è un'estensione di Chrome sviluppata da Tristan Wiley, e la sua funzione principale è "This extension acts as an aide for StackExchange Chat users and provides different local commands to help you!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione SO Chat Commander

Scarica i file di estensione SO Chat Commander in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome SO Chat Commander SO Chat Commander
ID ncmenjdhegdnihapnlejhfmhkjofppdc
URL Ufficiale https://chromewebstore.google.com/detail/so-chat-commander/ncmenjdhegdnihapnlejhfmhkjofppdc
Descrizione This extension acts as an aide for StackExchange Chat users and provides different local commands to help you!
Dimensione del File 18.74 KB
Conteggio Installazioni 12
Versione Corrente 1.79
Ultimo Aggiornamento 2019-04-27
Data di Pubblicazione 2019-04-27
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Tristan Wiley
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}