Slack Toggle

Slack Toggle

Adds the possibility to toggle the display of a section in slack

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Slack Toggle",
  "description": "Adds the possibility to toggle the display of a section in slack",
  "version": "1.0",
  "permissions": [
    "tabs",
    "http://*.slack.com/",
    "https://*.slack.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.slack.com/*",
        "https://*.slack.com/*"
      ],
      "js": [
        "jquery-2.1.3.min.js",
        "slack-toggle.js"
      ]
    }
  ],
  "manifest_version": 2,
  "icons": {
    "48": "pictures/slack-toggle-logo.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}