Manage Tabs by Domain
Close and gather same-domain tabs.
Τι είναι το Manage Tabs by Domain;
Το Manage Tabs by Domain είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Nicole White, και η κύρια λειτουργία του είναι "Close and gather same-domain tabs.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Manage Tabs by Domain
Λήψη αρχείων επέκτασης Manage Tabs by Domain σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Tabs with the same domain as the active tab can be closed with CMD + Shift + X or gathered around the active tab with CMD + Shift + A. All same-domain tabs can be gathered with CMD + Shift + L. Alternatively, tabs can be managed by clicking on the extension's button and selecting Close, Gather, or Gather All. You can edit the hotkeys that close or gather tabs at the bottom of chrome://extensions/
Βασικές Πληροφορίες Επέκτασης
Όνομα | Manage Tabs by Domain |
ID | jgjhgpeaejjahlbcgijdibooomicdcfi |
Επίσημο URL | https://chromewebstore.google.com/detail/manage-tabs-by-domain/jgjhgpeaejjahlbcgijdibooomicdcfi |
Περιγραφή | Close and gather same-domain tabs. |
Μέγεθος Αρχείου | 1.08 MB |
Αριθμός Εγκαταστάσεων | 362 |
Τρέχουσα Έκδοση | 0.0.2 |
Τελευταία Ενημέρωση | 2017-06-19 |
Ημερομηνία Δημοσίευσης | 2017-06-18 |
Αξιολόγηση | 4.11/5 Συνολικά 9 Αξιολογήσεις |
Προγραμματιστής | Nicole White |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/nicolewhite/same-domain-tabs/issues |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Manage Tabs by Domain", "short_name": "Manage Tabs", "description": "Close and gather same-domain tabs.", "version": "0.0.2", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "tabs", "commands" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "gather-tabs": { "suggested_key": { "default": "Ctrl+Shift+A", "mac": "Command+Shift+A" }, "description": "Gather same-domain tabs around active tab." }, "close-tabs": { "suggested_key": { "default": "Ctrl+Shift+X", "mac": "Command+Shift+X" }, "description": "Close same-domain tabs as active tab." }, "gather-tabs-all": { "suggested_key": { "default": "Ctrl+Shift+L", "mac": "Command+Shift+L" }, "description": "Gather all same-domain tabs." } }, "browser_action": { "default_icon": "icons\/icon48.png", "default_popup": "popup.html" }, "manifest_version": 2 } |