SO Chat Commander
This extension acts as an aide for StackExchange Chat users and provides different local commands to help you!
Hvad er SO Chat Commander?
SO Chat Commander er en Chrome-udvidelse udviklet af Tristan Wiley, og dens hovedfunktion er "This extension acts as an aide for StackExchange Chat users and provides different local commands to help you!".
Udvidelsesskærmbilleder
Download SO Chat Commander-udvidelses-CRX-fil
Download SO Chat Commander-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | SO Chat Commander |
ID | ncmenjdhegdnihapnlejhfmhkjofppdc |
Officiel URL | https://chromewebstore.google.com/detail/so-chat-commander/ncmenjdhegdnihapnlejhfmhkjofppdc |
Beskrivelse | This extension acts as an aide for StackExchange Chat users and provides different local commands to help you! |
Filstørrelse | 18.74 KB |
Antal Installationer | 12 |
Nuværende Version | 1.79 |
Senest Opdateret | 2019-04-27 |
Udgivelsesdato | 2019-04-27 |
Bedømmelse | 5.00/5 Samlet 3 Bedømmelser |
Udvikler | Tristan Wiley |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } |