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!"입니다.
확장 프로그램 스크린샷
SO Chat Commander 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |