Tab Keys
Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.
Τι είναι το Tab Keys;
Το Tab Keys είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον thekiteeatingtree, και η κύρια λειτουργία του είναι "Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.".
Λήψη αρχείου CRX της επέκτασης Tab Keys
Λήψη αρχείων επέκτασης Tab Keys σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | ![]() |
ID | fmmkbjckdjobofhoikpldcahemfccffo |
Επίσημο URL | https://chrome.google.com/webstore/detail/tab-keys/fmmkbjckdjobofhoikpldcahemfccffo |
Περιγραφή | Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab. |
Μέγεθος Αρχείου | 4.5 KB |
Αριθμός Εγκαταστάσεων | 21 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2017-07-27 |
Ημερομηνία Δημοσίευσης | 2017-07-27 |
Προγραμματιστής | thekiteeatingtree |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/TheKiteEatingTree/TabKeys |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/TheKiteEatingTree/TabKeys/issues |
Υποστηριζόμενες Γλώσσες | 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" } } } |