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开发的Chrome扩展程序,该扩展的主要功能是“This extension acts as an aide for StackExchange Chat users and provides different local commands to help you!”。

扩展截图

screenshot

下载SO Chat Commander扩展crx文件

下载SO Chat Commander扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    ]
}