Slack Channels Grouping

Slack Channels Grouping

It grouping Slack channels by prefix.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Slack Channels Grouping",
  "description": "__MSG_appDescription__",
  "version": "1.0.38",
  "short_name": "slack-ch-grp",
  "manifest_version": 3,
  "default_locale": "en",
  "icons": {
    "16": "images/icon-16.png",
    "19": "images/icon-19.png",
    "32": "images/icon-32.png",
    "38": "images/icon-38.png",
    "48": "images/icon-48.png",
    "64": "images/icon-64.png",
    "128": "images/icon-128.png"
  },
  "minimum_chrome_version": "88.0",
  "content_scripts": [
    {
      "matches": [
        "http://app.slack.com/*",
        "https://app.slack.com/*"
      ],
      "css": [
        "styles/font-face.css",
        "styles/content.css"
      ],
      "js": [
        "scripts/content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "scripts/background.js"
  },
  "permissions": [
    "scripting"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "fonts/SlackChannelsGrounping-NotoSansJP-Medium.ttf"
      ],
      "matches": [
        "http://app.slack.com/*",
        "https://app.slack.com/*"
      ]
    }
  ],
  "host_permissions": [
    "http://app.slack.com/*",
    "https://app.slack.com/*"
  ]
}