Tab Manager Shortcuts
Manage your chrome tabs with keyboard shortcuts.
Wat is Tab Manager Shortcuts?
Tab Manager Shortcuts is een Chrome-extensie ontwikkeld door Daniel Pham, en de belangrijkste functie is "Manage your chrome tabs with keyboard shortcuts.".
Extensie Screenshots
Download het CRX-bestand van de extensie Tab Manager Shortcuts
Download Tab Manager Shortcuts-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
Reorder and manage the chrome tabs with customizable keyboard shortcuts As of v2.0 keybindings must be set through the "Keyboard Shortcut" menu at the bottom right in the Chrome extension settings as defaults are not longer set (see https://bugs.chromium.org/p/chromium/issues/detail?id=167419). Source Code: https://github.com/danhp/tab-manager-chrome
Basisinformatie over de Extensie
Naam | Tab Manager Shortcuts |
ID | oofoadncochbkbpebpbndghocapamchi |
Officiële URL | https://chromewebstore.google.com/detail/tab-manager-shortcuts/oofoadncochbkbpebpbndghocapamchi |
Beschrijving | Manage your chrome tabs with keyboard shortcuts. |
Bestandsgrootte | 21.21 KB |
Aantal Installaties | 314 |
Huidige Versie | 2.0.0 |
Laatst Bijgewerkt | 2016-12-27 |
Publicatiedatum | 2016-12-27 |
Beoordeling | 3.36/5 Totaal 11 Beoordelingen |
Ontwikkelaar | Daniel Pham |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/danhp/tab-manager-chrome |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Manager Shortcuts", "version": "2.0.0", "description": "Manage your chrome tabs with keyboard shortcuts.", "homepage_url": "https:\/\/phamdaniel.github.io", "icons": { "16": "imgs\/16.png", "48": "imgs\/48.png", "128": "imgs\/128.png" }, "background": { "persisten": false, "scripts": [ "background.js" ] }, "commands": { "tab_manager_pin_current": { "description": "Pin or unpin current tab." }, "tab_manager_unpin_all": { "description": "Unpin all tabs in current window" }, "tab_manager_move_left": { "description": "Move selected tab left" }, "tab_manager_move_right": { "description": "Move selected tab right" }, "tab_manager_browse_left": { "description": "Switch\/browse tab left" }, "tab_manager_browse_right": { "description": "Switch\/browse tab right" } } } |