NextTab
A tool that automatically switches to the next tab in a list
Cos'è NextTab?
NextTab è un'estensione di Chrome sviluppata da saqfish, e la sua funzione principale è "A tool that automatically switches to the next tab in a list".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione NextTab
Scarica i file di estensione NextTab 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
NextTab will let you select a list of open tabs and automatically switch between them on refresh.
Informazioni di Base sull'Estensione
Nome | NextTab |
ID | fnalnialandajhfaidhanakabnfbngij |
URL Ufficiale | https://chromewebstore.google.com/detail/nexttab/fnalnialandajhfaidhanakabnfbngij |
Descrizione | A tool that automatically switches to the next tab in a list |
Dimensione del File | 1.14 MB |
Conteggio Installazioni | 18 |
Versione Corrente | 0.0.3 |
Ultimo Aggiornamento | 2020-10-24 |
Data di Pubblicazione | 2020-10-24 |
Sviluppatore | saqfish |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/saqfish/NextTab |
URL della Pagina di Aiuto | https://github.com/saqfish/NextTab/issues |
URL della Pagina della Politica sulla Privacy | http://saqfish.com/mtb_policy.html |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.0.3", "manifest_version": 2, "name": "NextTab", "short_name": "NextTab", "description": "A tool that automatically switches to the next tab in a list", "background": { "scripts": [ "lib\/js\/browser-polyfill.js", "background.js" ] }, "browser_action": { "default_icon": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "default_title": "NextTab", "default_popup": "popup.html" }, "permissions": [ "tabs", "downloads", "storage" ], "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "options_ui": { "page": ".\/options.html", "open_in_tab": true } } |