K-Tab

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

Apa itu K-Tab?

K-Tab adalah ekstensi Chrome yang dikembangkan oleh codyjrose, dan fitur utamanya adalah "Creates keyboard shortcuts to open CMS Desk and CMS Site Manager for Kentico CMS".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi K-Tab

Unduh file ekstensi K-Tab dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama K-Tab K-Tab
ID ocamfbmhpbkbnmkhaiobjgicbhioiake
URL Resmi https://chromewebstore.google.com/detail/k-tab/ocamfbmhpbkbnmkhaiobjgicbhioiake
Deskripsi Creates keyboard shortcuts to open CMS Desk and CMS Site Manager for Kentico CMS
Ukuran File 2.94 KB
Jumlah Instalasi 13
Versi Saat Ini 4
Terakhir Diperbarui 2015-03-30
Tanggal Publikasi 2015-03-30
Penilaian 5.00/5 Total 5 Penilaian
Pengembang codyjrose
Tipe Pembayaran free
Situs Ekstensi http://codyjrose.me
Bahasa yang Didukung 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"
        }
    }
}