math-with-slackb

math-with-slackb

Inject MathJax on Slack pages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "math-with-slackb",
  "version": "0.1",
  "description": "Inject MathJax on Slack pages",
  "permissions": [
    "*://*.slack.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.slack.com/*"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true
    }
  ]
}