NexTab
Open new tabs to the left or right of your active tab.
Qu'est-ce que NexTab ?
NexTab est une extension Chrome développée par https://nextab.co, et sa fonction principale est "Open new tabs to the left or right of your active tab.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension NexTab
Téléchargez les fichiers d'extension NexTab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | NexTab |
ID | okknollmafgigeimghbepomindhjnabj |
URL Officiel | https://chromewebstore.google.com/detail/nextab/okknollmafgigeimghbepomindhjnabj |
Description | Open new tabs to the left or right of your active tab. |
Taille du Fichier | 673 KB |
Nombre d'Installations | 113 |
Version Actuelle | 0.0.3 |
Dernière Mise à Jour | 2020-06-01 |
Date de Publication | 2020-06-01 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | https://nextab.co |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://nextab.co |
URL de la Page d'Aide | https://nextab.co |
URL de la Page de Politique de Confidentialité | https://nextab.co |
Langues Prises en Charge | 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'" } |