Tab Manager Shortcuts
Manage your chrome tabs with keyboard shortcuts.
Τι είναι το Tab Manager Shortcuts;
Το Tab Manager Shortcuts είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Daniel Pham, και η κύρια λειτουργία του είναι "Manage your chrome tabs with keyboard shortcuts.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Tab Manager Shortcuts
Λήψη αρχείων επέκτασης Tab Manager Shortcuts σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | Tab Manager Shortcuts |
ID | oofoadncochbkbpebpbndghocapamchi |
Επίσημο URL | https://chromewebstore.google.com/detail/tab-manager-shortcuts/oofoadncochbkbpebpbndghocapamchi |
Περιγραφή | Manage your chrome tabs with keyboard shortcuts. |
Μέγεθος Αρχείου | 21.21 KB |
Αριθμός Εγκαταστάσεων | 314 |
Τρέχουσα Έκδοση | 2.0.0 |
Τελευταία Ενημέρωση | 2016-12-27 |
Ημερομηνία Δημοσίευσης | 2016-12-27 |
Αξιολόγηση | 3.36/5 Συνολικά 11 Αξιολογήσεις |
Προγραμματιστής | Daniel Pham |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/danhp/tab-manager-chrome |
Υποστηριζόμενες Γλώσσες | 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" } } } |