Tab Glutton
Tab Glutton helps you manage and navigate the growing number of tabs in your browser.
Τι είναι το Tab Glutton;
Το Tab Glutton είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον nsand, και η κύρια λειτουργία του είναι "Tab Glutton helps you manage and navigate the growing number of tabs in your browser.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Tab Glutton
Λήψη αρχείων επέκτασης Tab Glutton σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Tab Glutton is here to help you sift through the open tabs in your browser. It supports filtering open tabs by the tab's title or URL. Once you find the tab you're looking for, you can click on the entry to go directly to that tab. v2.2.0 - Pinned tabs are now indicated in the list, and the pinned status can be toggled v2.1.0 - Added preferences to show the tab lists with separators between each item or as individual cards for a stronger contrast v2.0.2 - Fixed an issue where closing tabs in different windows would shuffle the window order - Window order should now be deterministic based on how recently a window was last focused v2.0.0 - Modernized Tab Glutton with Material Design and a cleaner codebase v1.0.3 - Fixed an issue with the total tab count being off by one occasionally v1.0.2 - Fixed deprecated method usage for opening the popup through keybindings v1.0.1 - Several bug fixes and modernization changes v0.4.0 - Support for tabs across multiple windows - Preference added to highlight the group of tabs within the currently selected window v0.3.3 - Correct tab count is now displayed when restoring multiple windows (thanks, Afuna) v0.3.1 - Handles undefined favicon and titles better v0.3 - Cleaned up the UI - Compressed tab items to page title - Added basic Options - Choose how to display the URL for a tab v0.2 - Close tabs from the list - Highlights the currently selected tab in the list v0.1 - Display and filter open tabs
Βασικές Πληροφορίες Επέκτασης
Όνομα | Tab Glutton |
ID | ekfmaibfpamaegficfifofnlhalkbdfm |
Επίσημο URL | https://chromewebstore.google.com/detail/tab-glutton/ekfmaibfpamaegficfifofnlhalkbdfm |
Περιγραφή | Tab Glutton helps you manage and navigate the growing number of tabs in your browser. |
Μέγεθος Αρχείου | 71.49 KB |
Αριθμός Εγκαταστάσεων | 1,945 |
Τρέχουσα Έκδοση | 2.2.0 |
Τελευταία Ενημέρωση | 2017-02-27 |
Ημερομηνία Δημοσίευσης | 2017-02-26 |
Αξιολόγηση | 4.45/5 Συνολικά 58 Αξιολογήσεις |
Προγραμματιστής | nsand |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Διεύθυνση URL της Σελίδας Βοήθειας | http://github.com/nsand/tab-glutton/issues |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Glutton", "version": "2.2.0", "permissions": [ "tabs" ], "description": "Tab Glutton helps you manage and navigate the growing number of tabs in your browser.", "icons": { "48": "img\/tab_glutton_48.png", "128": "img\/tab_glutton_128.png" }, "options_page": "pages\/options.html", "browser_action": { "default_title": "Tab Glutton", "default_icon": "img\/tab_glutton_19.png", "default_popup": "pages\/popup.html" }, "background": { "scripts": [ "lib\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "lib\/keybinding.js" ] } ] } |