Keyboard shortcuts to close Chrome tabs
Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones
Τι είναι το Keyboard shortcuts to close Chrome tabs;
Το Keyboard shortcuts to close Chrome tabs είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://diophung.com, και η κύρια λειτουργία του είναι "Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Keyboard shortcuts to close Chrome tabs
Λήψη αρχείων επέκτασης Keyboard shortcuts to close Chrome tabs σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Ever wish Chrome has the hotkeys to close tabs to the right, or to the left, or pin current tab? This extension will let you do it, and there are more. You can configure the hotkeys to: - Close tabs to the left. - Close tabs to the right. - Close other tabs. - Pin/unpin a tab. Source code available at : https://github.com/diophung/close-chrome-tabs Please provide your feedback to Twitter: @diophung or email : [email protected].
Βασικές Πληροφορίες Επέκτασης
Όνομα | Keyboard shortcuts to close Chrome tabs |
ID | fipfgiejfpcdacpjepkohdlnjonchnal |
Επίσημο URL | https://chromewebstore.google.com/detail/keyboard-shortcuts-to-clo/fipfgiejfpcdacpjepkohdlnjonchnal |
Περιγραφή | Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones |
Μέγεθος Αρχείου | 293 KB |
Αριθμός Εγκαταστάσεων | 4,928 |
Τρέχουσα Έκδοση | 0.3.0 |
Τελευταία Ενημέρωση | 2022-02-07 |
Ημερομηνία Δημοσίευσης | 2018-06-24 |
Αξιολόγηση | 4.64/5 Συνολικά 25 Αξιολογήσεις |
Προγραμματιστής | https://diophung.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/diophung/close-chrome-tabs |
Διεύθυνση URL της Σελίδας Βοήθειας | https://diophung.com/chrome-tab-shortcut-privacy-policy/ |
URL της Σελίδας Πολιτικής Απορρήτου | https://github.com/diophung/close-chrome-tabs/wiki/Privacy-Policy |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "persistent": false, "scripts": [ "background.js" ] }, "commands": { "close-other-tabs-dp": { "description": "Close other tabs", "suggested_key": { "default": "Alt+Shift+W" } }, "close-left-tabs-dp": { "description": "Close tabs to the left", "suggested_key": { "default": "Alt+Shift+L" } }, "close-right-tabs-dp": { "description": "Close tabs to the right", "suggested_key": { "default": "Alt+Shift+R" } }, "toggle-pin-dp": { "description": "Pin\/unpin Tab", "suggested_key": { "default": "Alt+Shift+P" } } }, "description": "Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left\/right\/other tabs or toggle pinned ones", "icons": { "128": "images\/tabs_128.png", "48": "images\/tabs_48.png" }, "manifest_version": 2, "name": "Keyboard shortcuts to close Chrome tabs", "short_name": "Shortcuts to close tabs", "options_page": "options.html", "permissions": [], "version": "0.3.0" } |