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”。
扩展截图
下载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
扩展基本信息
名称 | |
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" } } } |