K-Tab
Creates keyboard shortcuts to open CMS Desk and CMS Site Manager for Kentico CMS
K-Tabคืออะไร?
K-Tab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย codyjrose และคุณลักษณะหลักของมันคือ "Creates keyboard shortcuts to open CMS Desk and CMS Site Manager for Kentico CMS"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย K-Tab
ดาวน์โหลดไฟล์ส่วนขยาย 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" } } } |