SO Chat Commander

SO Chat Commander

This extension acts as an aide for StackExchange Chat users and provides different local commands to help you!

Merlin
Additional files are visible only to premium users

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