Examine source code of Why Salesforce

Inspect and view changes in Why Salesforce 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": "Why Salesforce",
  "version": "1.7",
  "permissions": [
    "storage"
  ],
  "description": "Stuff that Salesforce should have added already... Adding flow and user tabs into setup.",
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "*://*.lightning.force.com/lightning/setup/*",
        "*://*.salesforce-setup.com/lightning/setup/*"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "images/whysf16.png",
    "32": "images/whysf32.png",
    "48": "images/whysf48.png",
    "128": "images/whysf128.png"
  },
  "action": {
    "default_title": "Why Salesforce",
    "default_popup": "popup.html"
  }
}