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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
        }
    }
}