Tab Keys
Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.
Wat is Tab Keys?
Tab Keys is een Chrome-extensie ontwikkeld door thekiteeatingtree, en de belangrijkste functie is "Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.".
Download het CRX-bestand van de extensie Tab Keys
Download Tab Keys-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
Allows you to set keyboard shortcuts for selecting the next or previous tab. Also offers the ability to add a shortcut to pin tabs. The default shortcuts for next/prev tab are Ctrl+Right/Left. To edit the shortcuts click on the extension icon and hit 'Manage extensions'. Scroll to the bottom of the page and click 'Keyboard shortcuts'. This extensions shortcuts will be editable under the 'Tab Keys' header.
Basisinformatie over de Extensie
Naam | ![]() |
ID | fmmkbjckdjobofhoikpldcahemfccffo |
Officiële URL | https://chrome.google.com/webstore/detail/tab-keys/fmmkbjckdjobofhoikpldcahemfccffo |
Beschrijving | Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab. |
Bestandsgrootte | 4.5 KB |
Aantal Installaties | 21 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2017-07-27 |
Publicatiedatum | 2017-07-27 |
Ontwikkelaar | thekiteeatingtree |
Betalingswijze | free |
Extensiewebsite | https://github.com/TheKiteEatingTree/TabKeys |
Help Pagina-URL | https://github.com/TheKiteEatingTree/TabKeys/issues |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Keys", "description": "Allows you to set keyboard shortcuts for certain tab actions such as selecting the next\/prev tab.", "version": "1.0", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "next-tab": { "suggested_key": { "default": "Ctrl+Right" }, "description": "Select the next tab" }, "prev-tab": { "suggested_key": { "default": "Ctrl+Left" }, "description": "Select the previous tab" }, "pin-tab": { "suggested_key": { "default": "Ctrl+Shift+P" }, "description": "Pin the current tab" } } } |