Control Space To Indent

Control Space To Indent

Insert a tab when you type ctrl-space or other custom keystroke.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Control Space To Indent",
  "short_name": "control_space_to_tab",
  "description": "Insert a tab when you type ctrl-space or other custom keystroke.",
  "version": "0.52",
  "permissions": [
    "tabs",
    "<all_urls>",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "<all_urls>"
      ],
      "js": [
        "jquery.min.js",
        "ctrlspacetab.js",
        "popupoptions.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "Control Tab To Indent"
  }
}