K-Tab
Creates keyboard shortcuts to open CMS Desk and CMS Site Manager for Kentico CMS
Wat is K-Tab?
K-Tab is een Chrome-extensie ontwikkeld door codyjrose, en de belangrijkste functie is "Creates keyboard shortcuts to open CMS Desk and CMS Site Manager for Kentico CMS".
Extensie Screenshots
Download het CRX-bestand van de extensie K-Tab
Download K-Tab-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | ocamfbmhpbkbnmkhaiobjgicbhioiake |
Officiële URL | https://chromewebstore.google.com/detail/k-tab/ocamfbmhpbkbnmkhaiobjgicbhioiake |
Beschrijving | Creates keyboard shortcuts to open CMS Desk and CMS Site Manager for Kentico CMS |
Bestandsgrootte | 2.94 KB |
Aantal Installaties | 13 |
Huidige Versie | 4 |
Laatst Bijgewerkt | 2015-03-30 |
Publicatiedatum | 2015-03-30 |
Beoordeling | 5.00/5 Totaal 5 Beoordelingen |
Ontwikkelaar | codyjrose |
Betalingswijze | free |
Extensiewebsite | http://codyjrose.me |
Ondersteunde Talen | 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" } } } |