K-Tab

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

K-Tab là gì?

K-Tab là một tiện ích mở rộng Chrome được phát triển bởi codyjrose, và tính năng chính của nó là "Creates keyboard shortcuts to open CMS Desk and CMS Site Manager for Kentico CMS".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng K-Tab

Tải xuống các tệp mở rộng K-Tab dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên K-Tab K-Tab
ID ocamfbmhpbkbnmkhaiobjgicbhioiake
URL Chính Thức https://chromewebstore.google.com/detail/k-tab/ocamfbmhpbkbnmkhaiobjgicbhioiake
Mô tả Creates keyboard shortcuts to open CMS Desk and CMS Site Manager for Kentico CMS
Kích Thước Tệp 2.94 KB
Số Lần Cài Đặt 13
Phiên Bản Hiện Tại 4
Cập Nhật Lần Cuối 2015-03-30
Ngày Phát Hành 2015-03-30
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển codyjrose
Loại Thanh Toán free
Trang Web Mở Rộng http://codyjrose.me
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}