K-Tab
Creates keyboard shortcuts to open CMS Desk and CMS Site Manager for Kentico CMS
Cos'è K-Tab?
K-Tab è un'estensione di Chrome sviluppata da codyjrose, e la sua funzione principale è "Creates keyboard shortcuts to open CMS Desk and CMS Site Manager for Kentico CMS".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione K-Tab
Scarica i file di estensione K-Tab in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | ocamfbmhpbkbnmkhaiobjgicbhioiake |
URL Ufficiale | https://chromewebstore.google.com/detail/k-tab/ocamfbmhpbkbnmkhaiobjgicbhioiake |
Descrizione | Creates keyboard shortcuts to open CMS Desk and CMS Site Manager for Kentico CMS |
Dimensione del File | 2.94 KB |
Conteggio Installazioni | 13 |
Versione Corrente | 4 |
Ultimo Aggiornamento | 2015-03-30 |
Data di Pubblicazione | 2015-03-30 |
Valutazione | 5.00/5 Totale 5 Valutazioni |
Sviluppatore | codyjrose |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://codyjrose.me |
Lingue Supportate | 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" } } } |