NexTab
Open new tabs to the left or right of your active tab.
Cos'è NexTab?
NexTab è un'estensione di Chrome sviluppata da https://nextab.co, e la sua funzione principale è "Open new tabs to the left or right of your active tab.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione NexTab
Scarica i file di estensione NexTab in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | NexTab |
ID | okknollmafgigeimghbepomindhjnabj |
URL Ufficiale | https://chromewebstore.google.com/detail/nextab/okknollmafgigeimghbepomindhjnabj |
Descrizione | Open new tabs to the left or right of your active tab. |
Dimensione del File | 673 KB |
Conteggio Installazioni | 113 |
Versione Corrente | 0.0.3 |
Ultimo Aggiornamento | 2020-06-01 |
Data di Pubblicazione | 2020-06-01 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | https://nextab.co |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://nextab.co |
URL della Pagina di Aiuto | https://nextab.co |
URL della Pagina della Politica sulla Privacy | https://nextab.co |
Lingue Supportate | 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'" } |