Textarea Tabbing

Textarea Tabbing

Enter Tab characters in Textareas when pressing the Tab key. Selecting text and pressing Tab will indent the selected lines, Shift+Tab will outdent.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "1.0",
  "name": "Textarea Tabbing",
  "description": "Enter Tab characters in Textareas when pressing the Tab key. \nSelecting text and pressing Tab will indent the selected lines, Shift+Tab will outdent.",
  "author": "Majr",
  "icons": {
    "32": "icon.png",
    "64": "icon-large.png",
    "128": "icon-large@2x.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "textarea-tabbing.js"
      ]
    }
  ]
}