Examine source code of Slicon

Inspect and view changes in Slicon 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": "Slicon",
  "description": "Set icon to your slack channel, and make more accessible for your favorite channel!",
  "version": "0.2.0",
  "content_scripts": [
    {
      "matches": [
        "https://*.slack.com/*"
      ],
      "css": [
        "main.css"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "https://*.slack.com/*",
    "webRequest",
    "activeTab",
    "tabs"
  ],
  "browser_specific_settings": {
    "gecko": {
      "strict_min_version": "57.0"
    }
  },
  "icons": {
    "16": "icon.svg",
    "48": "icon.svg",
    "128": "icon.svg"
  }
}