Slack Custom Emoji Manager

Slack Custom Emoji Manager

Add the function to bulk add, remove, and download emoji to Slack.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_ext_name__",
  "short_name": "__MSG_ext_short_name__",
  "description": "__MSG_ext_desc__",
  "version": "1.3.0",
  "default_locale": "en",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_icon": {
      "19": "icon24.png"
    },
    "default_title": "Slack Custom Emoji Manager",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "css": [
        "main.css"
      ],
      "matches": [
        "*://*.slack.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "index.html",
        "icon128.png"
      ],
      "matches": [
        "*://*.slack.com/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "webRequest",
    "declarativeNetRequest"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "host_permissions": [
    "*://*.slack.com/*",
    "*://emoji.slack-edge.com/*"
  ]
}