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 - это расширение Chrome, разработанное Tristan Wiley, и его основная функция - "This extension acts as an aide for StackExchange Chat users and provides different local commands to help you!".
Снимки экрана расширения
Скачать файл CRX расширения SO Chat Commander
Скачайте файлы расширений 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 |
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" ] } |