Examine source code of Stack Overflow and Stack Exchange Indentation

Inspect and view changes in Stack Overflow and Stack Exchange Indentation 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": 2,
  "name": "Stack Overflow and Stack Exchange Indentation",
  "version": "0.3resigned1",
  "description": "Adds Tab and Shift + Tab indentation controls to Stack Overflow and Stack Exchange.",
  "icons": {
    "48": "icons/soindentation_48.png",
    "96": "icons/soindentation_96.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.stackoverflow.com/*",
        "*://*.stackexchange.com/*"
      ],
      "js": [
        "soindentation.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{e0553a17-21a0-4d6b-a891-58cf0e44344f}"
    }
  }
}