New Adjacent Tab

Opens a new tab to the right or left of the current one.

¿Qué es New Adjacent Tab?

New Adjacent Tab es una extensión de Chrome desarrollada por https://www.adelsaoud.com, y su función principal es "Opens a new tab to the right or left of the current one.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión New Adjacent Tab

Descarga archivos de extensión New Adjacent Tab 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

                        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.                    

Información Básica de la Extensión

Nombre New Adjacent Tab New Adjacent Tab
ID fommpldicogfgegfpcoibmhkbbdpodjg
URL Oficial https://chromewebstore.google.com/detail/new-adjacent-tab/fommpldicogfgegfpcoibmhkbbdpodjg
Descripción Opens a new tab to the right or left of the current one.
Tamaño del Archivo 10.7 KB
Cantidad de Instalaciones 7,266
Versión Actual 1.0.2
Última Actualización 2023-09-14
Fecha de Publicación 2019-09-23
Calificación 4.90/5 Total de 41 Calificaciones
Desarrollador https://www.adelsaoud.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://www.adelsaoud.com/
Idiomas Soportados 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"
        }
    }
}