Examine source code of Translate for Slack

Inspect and view changes in Translate for Slack 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Translate for Slack",
  "short_name": "Translate for Slack",
  "description": "Translate Slack message directly in the Slack web app.",
  "version": "1.0.6",
  "offline_enabled": false,
  "content_scripts": [
    {
      "matches": [
        "https://app.slack.com/client/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "host_permissions": [
    "https://app.slack.com/client/*"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "options_page": "options.html",
  "permissions": [
    "storage"
  ],
  "action": {
    "default_title": "Options",
    "default_icon": {
      "128": "icons/logo.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  }
}