NextTab
A tool that automatically switches to the next tab in a list
¿Qué es NextTab?
NextTab es una extensión de Chrome desarrollada por saqfish, y su función principal es "A tool that automatically switches to the next tab in a list".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión NextTab
Descarga archivos de extensión NextTab en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
NextTab will let you select a list of open tabs and automatically switch between them on refresh. Información Básica de la Extensión
| Nombre | |
| ID | fnalnialandajhfaidhanakabnfbngij |
| URL Oficial | https://chromewebstore.google.com/detail/nexttab/fnalnialandajhfaidhanakabnfbngij |
| Descripción | A tool that automatically switches to the next tab in a list |
| Tamaño del Archivo | 1.14 MB |
| Cantidad de Instalaciones | 18 |
| Versión Actual | 0.0.3 |
| Última Actualización | 2020-10-24 |
| Fecha de Publicación | 2020-10-24 |
| Desarrollador | saqfish |
| Correo electrónico | [email protected] |
| Tipo de Pago | free |
| Sitio Web de la Extensión | https://github.com/saqfish/NextTab |
| URL de la Página de Ayuda | https://github.com/saqfish/NextTab/issues |
| URL de la Página de Política de Privacidad | http://saqfish.com/mtb_policy.html |
| Idiomas Soportados | 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
}
} | |