Tabalot
Limit the maximum number of open tabs
Τι είναι το Tabalot;
Το Tabalot είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://matthewhadley.info, και η κύρια λειτουργία του είναι "Limit the maximum number of open tabs".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Tabalot
Λήψη αρχείων επέκτασης Tabalot σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Automatically limit the number of open tabs. If you end up with too many tabs open, all reduced to a tiny size, this extension will help you keep those tabs under control. After reaching a configurable open tab limit, that excludes pinned tabs, Tabalot will automatically close the oldest unused tab. As you get close to your tab limit, the extension icon badge count will start to turn red and will flash red when it closes a tab. Note that the tab badge count shows tabs in the current open window only (which seems to be a limitation on chrome) but will correctly update as you switch windows. ***PRIVACY POLICY*** Tabalot does not handle personal or sensitive user data.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | oakcapkgmnkhiglcimjcbobnloldlcgf |
Επίσημο URL | https://chrome.google.com/webstore/detail/tabalot/oakcapkgmnkhiglcimjcbobnloldlcgf |
Περιγραφή | Limit the maximum number of open tabs |
Μέγεθος Αρχείου | 13.58 KB |
Αριθμός Εγκαταστάσεων | 67 |
Τρέχουσα Έκδοση | 2.0.0 |
Τελευταία Ενημέρωση | 2018-09-02 |
Ημερομηνία Δημοσίευσης | 2018-09-02 |
Αξιολόγηση | 3.50/5 Συνολικά 4 Αξιολογήσεις |
Προγραμματιστής | https://matthewhadley.info |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tabalot", "version": "2.0.0", "description": "Limit the maximum number of open tabs", "permissions": [ "tabs" ], "icons": { "128": "icon-128.png", "16": "icon-16.png", "48": "icon-48.png" }, "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_icon": { "19": "icon-19.png", "38": "icon-38.png" }, "default_title": "Tabalot", "default_popup": "options.html" } } |