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