K-Tab

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

什麼是K-Tab?

K-Tab是由codyjrose開發的Chrome擴展程式,該擴展的主要功能是“Creates keyboard shortcuts to open CMS Desk and CMS Site Manager for Kentico CMS”。

擴展截圖

screenshot

下載K-Tab擴展crx文件

下載K-Tab擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 K-Tab K-Tab
ID ocamfbmhpbkbnmkhaiobjgicbhioiake
官方網址 https://chromewebstore.google.com/detail/k-tab/ocamfbmhpbkbnmkhaiobjgicbhioiake
簡介 Creates keyboard shortcuts to open CMS Desk and CMS Site Manager for Kentico CMS
檔案大小 2.94 KB
安裝次數 13
目前版本 4
更新時間 2015-03-30
上架時間 2015-03-30
評分 5.00/5 共 5 次評分
開發者 codyjrose
付費類型 free
擴展官網 http://codyjrose.me
支援的語言 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"
        }
    }
}