Force Slack in Browser

Force Slack in Browser

Force Slack to open archive links in the browser not the desktop app.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Force Slack in Browser",
  "description": "Force Slack to open archive links in the browser not the desktop app.",
  "version": "0.0.1",
  "homepage_url": "https://github.com/wearhere/ForceSlackInBrowser",
  "author": "Jeffrey Wear",
  "icons": {
    "128": "window-restore-solid.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.slack.com/archives/*"
      ],
      "js": [
        "src/app.js"
      ],
      "run_at": "document_start"
    }
  ]
}