Slack Mute User and Message

Slack Mute User and Message

Slackで特定のキーワードやユーザーのメッセージをミュート(非表示)にすることができます

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Slack Mute User and Message",
  "short_name": "Slack Mute",
  "description": "",
  "version": "0.1.2",
  "background": {
    "scripts": [
      "src/js/localstorage.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.slack.com/*"
      ],
      "js": [
        "src/js/jquery-3.2.1.min.js",
        "src/js/script.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "src/img/icon16.png",
    "48": "src/img/icon48.png",
    "128": "src/img/icon128.png"
  },
  "browser_action": {
    "default_icon": "src/img/icon48.png",
    "default_popup": "src/html/option.html",
    "default_title": "Slack Mute"
  }
}