SO Chat Commander
This extension acts as an aide for StackExchange Chat users and provides different local commands to help you!
What is SO Chat Commander?
SO Chat Commander is a Chrome extension developed by Tristan Wiley, and its main feature is "This extension acts as an aide for StackExchange Chat users and provides different local commands to help you!".
Extension Screenshots
Download SO Chat Commander Extension CRX File
Download SO Chat Commander extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | SO Chat Commander |
ID | ncmenjdhegdnihapnlejhfmhkjofppdc |
Official URL | https://chromewebstore.google.com/detail/so-chat-commander/ncmenjdhegdnihapnlejhfmhkjofppdc |
Description | This extension acts as an aide for StackExchange Chat users and provides different local commands to help you! |
File Size | 18.74 KB |
Installation Count | 12 |
Current Version | 1.79 |
Last Updated | 2019-04-27 |
Publish Date | 2019-04-27 |
Rating | 5.00/5 Total 3 Ratings |
Developer | Tristan Wiley |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |