Examine source code of Salesforce inspector

Inspect and view changes in Salesforce inspector 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",
  "name": "Salesforce inspector",
  "description": "Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.",
  "version": "1.14",
  "icons": {
    "128": "icon128.png"
  },
  "minimum_chrome_version": "61",
  "permissions": [
    "https://*.salesforce.com/*",
    "https://*.force.com/*",
    "https://*.cloudforce.com/*",
    "https://*.visualforce.com/*",
    "cookies"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.salesforce.com/*",
        "https://*.visual.force.com/*",
        "https://*.lightning.force.com/*",
        "https://*.cloudforce.com/*",
        "https://*.visualforce.com/*"
      ],
      "all_frames": true,
      "css": [
        "button.css",
        "inspect-inline.css"
      ],
      "js": [
        "button.js",
        "inspect-inline.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "popup.html",
    "data-export.html",
    "data-import.html",
    "inspect.html",
    "metadata-retrieve.html",
    "explore-api.html",
    "limits.html"
  ],
  "incognito": "split",
  "manifest_version": 2
}