Slack Emoji Switcher

Slack Emoji Switcher

This extension allows the user to change emoji in the slack page.

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 Emoji Switcher",
  "description": "This extension allows the user to change emoji in the slack page.",
  "version": "1.0.1",
  "browser_action": {
    "default_icon": {
      "16": "icon16.png",
      "48": "icon48.png",
      "128": "icon128.png"
    },
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "https://*.slack.com/*",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.slack.com/*"
      ],
      "js": [
        "changeemoji.js"
      ]
    }
  ]
}