K-Tab

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

Qu'est-ce que K-Tab ?

K-Tab est une extension Chrome développée par codyjrose, et sa fonction principale est "Creates keyboard shortcuts to open CMS Desk and CMS Site Manager for Kentico CMS".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension K-Tab

Téléchargez les fichiers d'extension K-Tab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom K-Tab K-Tab
ID ocamfbmhpbkbnmkhaiobjgicbhioiake
URL Officiel https://chromewebstore.google.com/detail/k-tab/ocamfbmhpbkbnmkhaiobjgicbhioiake
Description Creates keyboard shortcuts to open CMS Desk and CMS Site Manager for Kentico CMS
Taille du Fichier 2.94 KB
Nombre d'Installations 13
Version Actuelle 4
Dernière Mise à Jour 2015-03-30
Date de Publication 2015-03-30
Évaluation 5.00/5 Total 5 Évaluations
Développeur codyjrose
Type de Paiement free
Site Web de l'Extension http://codyjrose.me
Langues Prises en Charge 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"
        }
    }
}