Tab Grouper
Automatically group tabs based on URL matches
Τι είναι το Tab Grouper;
Το Tab Grouper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Mark Harrison, και η κύρια λειτουργία του είναι "Automatically group tabs based on URL matches".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Tab Grouper
Λήψη αρχείων επέκτασης Tab Grouper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Tab grouper is a chrome extension that allows you to automatically group all tabs that match a given URL pattern. You create rules for each website saying which URL pattern to match, the name of the tab group, and optionally a color, and the extension will add matching websites to the appropriate tab groups as you browse to them. For example, you could have all jira tickets in a single group, all amazon pages in another, and all google search results in another. For more details, see https://github.com/mivok/tabgrouper/blob/master/README.md *** Questions/Answers: Q: Why do you need the "Can read your browsing history" (or "tabs") permission? A: As you browse, the extension reads the addresses of the sites you, matching them against the rules you write, automatically grouping tabs based on those rules. The extension does not store nor transmit your browsing history anywhere. Q: Why do you need the "View and manage your tab groups" permission? A: The purpose of this extension is to automatically manage your tab groups for you, and so this permission is needed for the extension to work.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Tab Grouper |
ID | cejjplkmdfnnlmphbhpbnfmkhkknnokg |
Επίσημο URL | https://chromewebstore.google.com/detail/tab-grouper/cejjplkmdfnnlmphbhpbnfmkhkknnokg |
Περιγραφή | Automatically group tabs based on URL matches |
Μέγεθος Αρχείου | 19.59 KB |
Αριθμός Εγκαταστάσεων | 735 |
Τρέχουσα Έκδοση | 0.0.1 |
Τελευταία Ενημέρωση | 2021-03-18 |
Ημερομηνία Δημοσίευσης | 2021-03-17 |
Αξιολόγηση | 4.43/5 Συνολικά 7 Αξιολογήσεις |
Προγραμματιστής | Mark Harrison |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/mivok/tabgrouper |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/mivok/tabgrouper/issues |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Tab Grouper", "version": "0.0.1", "description": "Automatically group tabs based on URL matches", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "service_worker": "tabgroups.js" }, "options_page": "options.html", "permissions": [ "tabGroups", "storage", "tabs" ] } |