Group Tabs By Domain
New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs.
Τι είναι το Group Tabs By Domain;
Το Group Tabs By Domain είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον grouptabsbydomain, και η κύρια λειτουργία του είναι "New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Group Tabs By Domain
Λήψη αρχείων επέκτασης Group Tabs By Domain σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Group all the tabs by domain/website url. This will help user to keep tabs organized. New tabs are automatically moved to the correct group. If no group is available then new group will be created. It groups all tabs by top level domain. group name will be GOOGLE for both below url(s). https://google.com https://docs.google.com
Βασικές Πληροφορίες Επέκτασης
Όνομα | Group Tabs By Domain |
ID | icmbnkmjhdapliaologdghjfpcmcimln |
Επίσημο URL | https://chromewebstore.google.com/detail/group-tabs-by-domain/icmbnkmjhdapliaologdghjfpcmcimln |
Περιγραφή | New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs. |
Μέγεθος Αρχείου | 63.21 KB |
Αριθμός Εγκαταστάσεων | 3,084 |
Τρέχουσα Έκδοση | 0.0.0.1 |
Τελευταία Ενημέρωση | 2022-06-08 |
Ημερομηνία Δημοσίευσης | 2022-06-08 |
Αξιολόγηση | 4.52/5 Συνολικά 31 Αξιολογήσεις |
Προγραμματιστής | grouptabsbydomain |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Group Tabs By Domain", "version": "0.0.0.1", "description": "New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs.", "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "action": { "default_popup": "popup.html" }, "permissions": [ "tabGroups", "tabs" ], "background": { "service_worker": "service-worker.js" }, "commands": { "group-tabs-by-domain": { "suggested_key": { "default": "Ctrl+Shift+Left", "mac": "Command+Shift+Left" }, "description": "New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs." } } } |