Examine source code of Happy Slack

Inspect and view changes in Happy Slack source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Happy Slack",
  "version": "0.8",
  "author": "Simon Frey",
  "developer": {
    "name": "Simon Frey",
    "url": "https://simon-frey.com/"
  },
  "description": "Makes your Slack happier by automatically adding happy emojis to the end of your messages",
  "homepage_url": "https://github.com/simonfrey/happy-slack",
  "icons": {
    "48": "icons/happy.svg",
    "96": "icons/happy.svg"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.slack.com/*"
      ],
      "js": [
        "js/happy.js"
      ]
    }
  ]
}