Slack PWA

Convert Slack web app to PWA
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Slack PWA",
  "description": "Convert Slack web app to PWA ",
  "version": "1.0",
  "icons": {
    "16": "assets/16x16.png",
    "48": "assets/48x48.png",
    "128": "assets/128x128.png"
  },
  "author": "Anshu Meena <anshu@frimware.in>",
  "content_scripts": [
    {
      "matches": [
        "*://app.slack.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}