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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } } } |