SO Chat Commander

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

Co to jest SO Chat Commander?

SO Chat Commander to rozszerzenie Chrome opracowane przez Tristan Wiley, a jego główną funkcją jest „This extension acts as an aide for StackExchange Chat users and provides different local commands to help you!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia SO Chat Commander

Pobierz pliki rozszerzeń SO Chat Commander w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa SO Chat Commander SO Chat Commander
ID ncmenjdhegdnihapnlejhfmhkjofppdc
Oficjalny URL https://chromewebstore.google.com/detail/so-chat-commander/ncmenjdhegdnihapnlejhfmhkjofppdc
Opis This extension acts as an aide for StackExchange Chat users and provides different local commands to help you!
Rozmiar pliku 18.74 KB
Liczba instalacji 12
Aktualna Wersja 1.79
Ostatnia Aktualizacja 2019-04-27
Data Publikacji 2019-04-27
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Tristan Wiley
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}