Open in Private Mode

Open the active tab in a private window via toolbar button or context-menu.

¿Qué es Open in Private Mode?

Open in Private Mode es una extensión de Chrome desarrollada por Yubi, y su función principal es "Open the active tab in a private window via toolbar button or context-menu.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Open in Private Mode

Descarga archivos de extensión Open in Private Mode 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

                        Open in Private Mode is an extension that enables you to open the current tab (active) in a private window.

Simply click on the toolbar button to open the private (or incognito) window. You can also use the context-menu item (right-click) to open the private window. Please note that, if you right-click on a link, the new private window will have the link URL instead of the tab. Moreover, you can use the keyboard shortcut (Alt + Shift + S) to open the active tab in a private window. If you want to open a custom URL in a private window when you click on the toolbar button, please open the options page and add a URL in the designated area.

To report bugs, please fill out the bug report form on the addon's homepage (https://mybrowseraddon.com/open-in-private-mode.html).                    

Información Básica de la Extensión

Nombre Open in Private Mode Open in Private Mode
ID fcmoifjllifgjedihhcmbhjmfakcadcm
URL Oficial https://chromewebstore.google.com/detail/open-in-private-mode/fcmoifjllifgjedihhcmbhjmfakcadcm
Descripción Open the active tab in a private window via toolbar button or context-menu.
Tamaño del Archivo 23.43 KB
Cantidad de Instalaciones 2,586
Versión Actual 0.1.2
Última Actualización 2024-02-12
Fecha de Publicación 2017-12-09
Calificación 4.33/5 Total de 6 Calificaciones
Desarrollador Yubi
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://mybrowseraddon.com/open-in-private-mode.html
URL de la Página de Ayuda https://mybrowseraddon.com/open-in-private-mode.html
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.2",
    "manifest_version": 3,
    "name": "Open in Private Mode",
    "homepage_url": "https:\/\/mybrowseraddon.com\/open-in-private-mode.html",
    "description": "Open the active tab in a private window via toolbar button or context-menu.",
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "data\/options\/options.html"
    },
    "permissions": [
        "storage",
        "activeTab",
        "contextMenus"
    ],
    "commands": {
        "private-tab": {
            "description": "Open in Private Mode",
            "suggested_key": {
                "mac": "Alt+Shift+S",
                "default": "Alt+Shift+S"
            }
        }
    },
    "action": {
        "default_title": "Open in Private Mode",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}