Examine source code of Again, Why Salesforce

Inspect and view changes in Again, 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
{
  "manifest_version": 3,
  "name": "Again, Why Salesforce",
  "version": "1.4.8",
  "permissions": [
    "storage",
    "activeTab",
    "contextMenus",
    "downloads"
  ],
  "description": "Create and manage custom tabs in the available space on Salesforce Lightning Setup page.",
  "homepage_url": "https://github.com/Astisme/again-why-salesforce",
  "content_scripts": [
    {
      "matches": [
        "https://*.my.salesforce-setup.com/lightning/setup/*",
        "https://*.lightning.force.com/lightning/setup/*"
      ],
      "js": [
        "salesforce/bundledContent.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "salesforce/lightning-navigation.js"
      ],
      "matches": [
        "https://*.my.salesforce-setup.com/*",
        "https://*.lightning.force.com/*"
      ]
    },
    {
      "resources": [
        "assets/svgs/*.svg",
        "assets/icons/*.png"
      ],
      "matches": [
        "https://*.my.salesforce-setup.com/*",
        "https://*.lightning.force.com/*"
      ]
    }
  ],
  "icons": {
    "16": "assets/icons/awsf-16.png",
    "32": "assets/icons/awsf-32.png",
    "64": "assets/icons/awsf-64.png",
    "128": "assets/icons/awsf-128.png",
    "256": "assets/icons/awsf-256.png",
    "512": "assets/icons/awsf-512.png",
    "1024": "assets/icons/awsf-1024.png"
  },
  "action": {
    "default_title": "Again, Why Salesforce",
    "default_popup": "action/popup/popup.html"
  },
  "background": {
    "service_worker": "background/bundledBackground.js",
    "type": "module"
  },
  "minimum_chrome_version": "120.0.0",
  "incognito": "spanning",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}