Stack Overflow and Stack Exchange Indentation

Stack Overflow and Stack Exchange Indentation

Adds Tab and Shift + Tab indentation controls to Stack Overflow and Stack Exchange.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Stack Overflow and Stack Exchange Indentation",
  "version": "0.2",
  "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"
  ]
}