Slack Bot-Filter

Slack Bot-Filter

This extension allows one to filter bot messages out of a slack channel.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "short_name": "__MSG_extension_shortname__",
  "description": "__MSG_extension_description__",
  "version": "0.2.7",
  "author": "Adriaan Callaerts <[email protected]>",
  "default_locale": "en",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png",
    "230": "icon.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.slack.com/messages/*"
      ],
      "js": [
        "toggle.js",
        "hide-bots.js"
      ],
      "css": [
        "toggle.css"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "webNavigation"
  ]
}