New Adjacent Tab
Opens a new tab to the right or left of the current one.
Τι είναι το New Adjacent Tab;
Το New Adjacent Tab είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.adelsaoud.com, και η κύρια λειτουργία του είναι "Opens a new tab to the right or left of the current one.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης New Adjacent Tab
Λήψη αρχείων επέκτασης New Adjacent Tab σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Developed exclusively for Chrome. This extension is not guaranteed to work with other Chromium-based browsers like Edge, Brave, Opera, etc... Please don't report issues or down-vote this extension in the Chrome Web Store if you're using a non-Chrome browser. New Adjacent Tab allows you to open tabs to the right/left through keyboard shortcuts, the context menu, and the extension's icon. All settings are configurable and are automatically synced across your devices if you're signed in to Google Chrome. The default keyboard shortcuts are: - Alt+T to open a new tab to the right of the current one. - Alt+H to open a new tab to the left of the current one.
Βασικές Πληροφορίες Επέκτασης
Όνομα | New Adjacent Tab |
ID | fommpldicogfgegfpcoibmhkbbdpodjg |
Επίσημο URL | https://chromewebstore.google.com/detail/new-adjacent-tab/fommpldicogfgegfpcoibmhkbbdpodjg |
Περιγραφή | Opens a new tab to the right or left of the current one. |
Μέγεθος Αρχείου | 10.7 KB |
Αριθμός Εγκαταστάσεων | 7,266 |
Τρέχουσα Έκδοση | 1.0.2 |
Τελευταία Ενημέρωση | 2023-09-14 |
Ημερομηνία Δημοσίευσης | 2019-09-23 |
Αξιολόγηση | 4.90/5 Συνολικά 41 Αξιολογήσεις |
Προγραμματιστής | https://www.adelsaoud.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | http://www.adelsaoud.com/ |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "New Adjacent Tab", "version": "1.0.2", "description": "Opens a new tab to the right or left of the current one.", "permissions": [ "contextMenus", "storage" ], "background": { "service_worker": "background.js" }, "icons": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" }, "action": [], "options_ui": { "page": "options.html" }, "commands": { "newTabToTheRight": { "suggested_key": { "default": "Alt+T" }, "description": "New tab to the right" }, "newTabToTheLeft": { "suggested_key": { "default": "Alt+H" }, "description": "New tab to the left" } } } |