NexTab
Open new tabs to the left or right of your active tab.
Τι είναι το NexTab;
Το NexTab είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://nextab.co, και η κύρια λειτουργία του είναι "Open new tabs to the left or right of your active tab.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης NexTab
Λήψη αρχείων επέκτασης NexTab σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Ever been frustrated that new tabs open at the end of all your current tabs. Then this is for you. NexTab simply extends the default browser functionality for opening new tabs by opening them next to your current tab, instead of at the end. NexTab comes with two predefined shortcuts out of the box. Or if you'd prefer to customise them, open the popup and follow the link to add your own.
Βασικές Πληροφορίες Επέκτασης
Όνομα | NexTab |
ID | okknollmafgigeimghbepomindhjnabj |
Επίσημο URL | https://chromewebstore.google.com/detail/nextab/okknollmafgigeimghbepomindhjnabj |
Περιγραφή | Open new tabs to the left or right of your active tab. |
Μέγεθος Αρχείου | 673 KB |
Αριθμός Εγκαταστάσεων | 113 |
Τρέχουσα Έκδοση | 0.0.3 |
Τελευταία Ενημέρωση | 2020-06-01 |
Ημερομηνία Δημοσίευσης | 2020-06-01 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | https://nextab.co |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://nextab.co |
Διεύθυνση URL της Σελίδας Βοήθειας | https://nextab.co |
URL της Σελίδας Πολιτικής Απορρήτου | https://nextab.co |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NexTab", "description": "Open new tabs to the left or right of your active tab.", "version": "0.0.3", "manifest_version": 2, "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "browser_action": { "default_title": "NexTab", "default_popup": "popup\/popup.html" }, "background": { "page": "background.html" }, "commands": { "open-right": { "suggested_key": { "default": "Alt+T", "mac": "Alt+T", "windows": "Alt+T" }, "description": "Opens new tabs to the right of your current tab" }, "open-left": { "suggested_key": { "default": "Alt+Shift+T", "mac": "Alt+Shift+T", "windows": "Alt+Shift+T" }, "description": "Opens new tabs to the left of your current tab" } }, "permissions": [ "tabs" ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com\/analytics.js; object-src 'self'" } |