Prevent Duplicate Tabs
Prevent duplicate tabs
Τι είναι το Prevent Duplicate Tabs;
Το Prevent Duplicate Tabs είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Guilherme Nascimento, και η κύρια λειτουργία του είναι "Prevent duplicate tabs".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Prevent Duplicate Tabs
Λήψη αρχείων επέκτασης Prevent Duplicate Tabs σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Prevents automatic creation of new tabs or repeating tabs when two or more tabs have the same addresses The process of closing repeated tabs is automatic based on the settings that you can determine within the extension/add-on, it is also possible to quickly disable and activate the add-on without having to access the extensions panel. You can add a host or URL to specify as an exception so that the add-on doesn't close repeating tabs. The extension/add-on has support for closing repeated tabs in incognito/incognito mode, but this works in isolation and will not share any information from incognito mode with normal mode, they are completely separate actions. Among the settings you can choose to consider or disregard querystring and hashes in URLs as a factor to differentiate them. It is also possible to configure if you prefer to close the oldest tabs and if you want to prevent the active tab (currently visible) from being closed. Closing tabs works based on Chrome API events and you can disable or re-enable such events within the extension/add-on:
- Start event - Close repeated tabs when your browser is launched
- Update event - Close repeated tabs when a tab is updated, more details in tabs.onUpdated.addListener
- Create event - Close repeated tabs when a new tab is created, more details in tabs.onCreated.addListener
- Replace event - Close repeated tabs when a tab is replaced with another tab due to prerendering or instant, more details in tabs.onReplaced.addListener
- Attach event - Close repeated tabs when a tab is attached to another window or detached (creating a new window), more details in tabs.onAttached.addListener
- Datachange event - Close repeated tabs when you change "sort order", "URLs", "others" and "events" configurations from extension
Βασικές Πληροφορίες Επέκτασης
Όνομα | Prevent Duplicate Tabs |
ID | eednccpckdkpojaiemedoejdngappaag |
Επίσημο URL | https://chromewebstore.google.com/detail/prevent-duplicate-tabs/eednccpckdkpojaiemedoejdngappaag |
Περιγραφή | Prevent duplicate tabs |
Μέγεθος Αρχείου | 41.27 KB |
Αριθμός Εγκαταστάσεων | 4,431 |
Τρέχουσα Έκδοση | 0.7.10 |
Τελευταία Ενημέρωση | 2023-04-03 |
Ημερομηνία Δημοσίευσης | 2020-04-30 |
Αξιολόγηση | 4.58/5 Συνολικά 19 Αξιολογήσεις |
Προγραμματιστής | Guilherme Nascimento |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/brcontainer/prevent-duplicate-tabs/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/brcontainer/prevent-duplicate-tabs/issues/new/choose |
Υποστηριζόμενες Γλώσσες | de,en,fr,es,pt-BR,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Guilherme Nascimento", "name": "Prevent Duplicate Tabs", "description": "Prevent duplicate tabs", "version": "0.7.10", "manifest_version": 2, "default_locale": "en", "icons": { "16": "images\/icon.png", "32": "images\/32x.png", "48": "images\/48x.png", "128": "images\/128x.png" }, "browser_action": { "default_icon": "images\/icon.png", "default_popup": "views\/popup.html#popup" }, "options_ui": { "page": "views\/popup.html#config" }, "background": { "scripts": [ "js\/boot.js", "js\/background.js" ] }, "permissions": [ "tabs", "storage" ] } |