SO Chat Commander
This extension acts as an aide for StackExchange Chat users and provides different local commands to help you!
Qu'est-ce que SO Chat Commander ?
SO Chat Commander est une extension Chrome développée par Tristan Wiley, et sa fonction principale est "This extension acts as an aide for StackExchange Chat users and provides different local commands to help you!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension SO Chat Commander
Téléchargez les fichiers d'extension SO Chat Commander au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | SO Chat Commander |
ID | ncmenjdhegdnihapnlejhfmhkjofppdc |
URL Officiel | 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! |
Taille du Fichier | 18.74 KB |
Nombre d'Installations | 12 |
Version Actuelle | 1.79 |
Dernière Mise à Jour | 2019-04-27 |
Date de Publication | 2019-04-27 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | Tristan Wiley |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |