Indent TextArea

Indent TextArea

Enables indent on textarea from context menu.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "short_name": "__MSG_shortName__",
  "description": "__MSG_extDesc__",
  "version": "1.0.2",
  "default_locale": "en",
  "permissions": [
    "contextMenus",
    "tabs",
    "activeTab",
    "http://*/",
    "https://*/"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "16x16.png",
    "48": "48x48.png",
    "128": "128x128.png"
  }
}