Tab reopen key on incognito mode

This extension enables {Ctrl+Shift+T} shortcut key to reopen tabs/windows on Incognito mode.

Vad är Tab reopen key on incognito mode?

Tab reopen key on incognito mode är en Chrome-tillägg utvecklad av nex, och dess huvudfunktion är "This extension enables {Ctrl+Shift+T} shortcut key to reopen tabs/windows on Incognito mode.".

Tilläggsskärmbilder

screenshot

Ladda ner Tab reopen key on incognito mode-förlängningens CRX-fil

Ladda ner Tab reopen key on incognito mode-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        After the installation, please set "Allow in incognito" to allow this extension works on the incognito mode.

Also, the default shortcut key is set as {Ctrl+Shift+X}, but you can replace it.
*Shortcut keys setting page's URL is --> chrome://extensions/shortcuts                    

Grundläggande Information om Tillägg

Namn Tab reopen key on incognito mode Tab reopen key on incognito mode
ID alkfhfgkepamooonkjdolamnbilhkmjg
Officiell webbadress https://chromewebstore.google.com/detail/tab-reopen-key-on-incogni/alkfhfgkepamooonkjdolamnbilhkmjg
Beskrivning This extension enables {Ctrl+Shift+T} shortcut key to reopen tabs/windows on Incognito mode.
Filstorlek 4.48 KB
Antal Installationer 755
Aktuell Version 1.0
Senast Uppdaterad 2021-07-06
Publiceringsdatum 2021-07-06
Betyg 3.50/5 Totalt 2 Betyg
Utvecklare nex
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab reopen key on incognito mode",
    "description": "This extension enables {Ctrl+Shift+T} shortcut key to reopen tabs\/windows on Incognito mode.",
    "version": "1.0",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "reopen_tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+X"
            },
            "description": "reopen tab"
        }
    },
    "permissions": [
        "tabs",
        "commands",
        "sessions"
    ]
}