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" } } } |