K-Tab

Creates keyboard shortcuts to open CMS Desk and CMS Site Manager for Kentico CMS

What is K-Tab?

K-Tab is a Chrome extension developed by codyjrose, and its main feature is "Creates keyboard shortcuts to open CMS Desk and CMS Site Manager for Kentico CMS".

Extension Screenshots

screenshot

Download K-Tab Extension CRX File

Download K-Tab extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        For Kentico developers who like keyboard shortcuts: this extension allows you to use Alt+1 and Alt+2 to open CMS Desk and Site Manager.

***NOTE*** You may have to set the keyboard shortcuts within Chrome's Extension options. To do so, click Menu -> Tools -> Extensions. Scroll to the bottom and click "Keyboard shortcuts".

From there, you can assign the shortcuts to open CMS Desk and Site Manager.

The source is extremely simple and can be found on Github. Feel free to fork. https://github.com/rosay/kentico-tab                    

Extension Basic Information

Name K-Tab K-Tab
ID ocamfbmhpbkbnmkhaiobjgicbhioiake
Official URL https://chromewebstore.google.com/detail/k-tab/ocamfbmhpbkbnmkhaiobjgicbhioiake
Description Creates keyboard shortcuts to open CMS Desk and CMS Site Manager for Kentico CMS
File Size 2.94 KB
Installation Count 13
Current Version 4
Last Updated 2015-03-30
Publish Date 2015-03-30
Rating 5.00/5 Total 5 Ratings
Developer codyjrose
Payment Type free
Extension Website http://codyjrose.me
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "K-Tab",
    "description": "Creates keyboard shortcuts to open  CMS Desk and CMS Site Manager for Kentico CMS",
    "version": "4",
    "manifest_version": 2,
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "cmsdesk": {
            "suggested_key": {
                "default": "Alt+1"
            },
            "description": "Open CMS Desk"
        },
        "cmssitemanager": {
            "suggested_key": {
                "default": "Alt+2"
            },
            "description": "Open CMS Site Manager"
        }
    }
}