Key-ncognito

Use a keyboard shortcut to open links incognito.

Qu'est-ce que Key-ncognito ?

Key-ncognito est une extension Chrome développée par https://www.musicallyut.in, et sa fonction principale est "Use a keyboard shortcut to open links incognito.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Key-ncognito

Téléchargez les fichiers d'extension Key-ncognito au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        This plugin allows you to use a key combination and click to open a link in an incognito window. If you open links incognito several times a day, this plugin can be a great time-saver.

The default key combination is Shift + Meta + Click. It can be changed via the Options page. Whether the new tabs open in a new window each time or in the same window can also be configured.

The Meta key could be the Command Key (on Mac), the Win Key (on Windows), Context/Menu Key (on Linux) or any other system determined key.                    

Informations de Base sur l'Extension

Nom Key-ncognito Key-ncognito
ID lilomadmkegmkmkjmdbbgalimcmfogfk
URL Officiel https://chromewebstore.google.com/detail/key-ncognito/lilomadmkegmkmkjmdbbgalimcmfogfk
Description Use a keyboard shortcut to open links incognito.
Taille du Fichier 750 KB
Nombre d'Installations 410
Version Actuelle 2.0.0
Dernière Mise à Jour 2020-05-21
Date de Publication 2020-05-21
Évaluation 5.00/5 Total 8 Évaluations
Développeur https://www.musicallyut.in
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://www.musicallyut.in
URL de la Page d'Aide https://github.com/musically-ut/key-ncognito/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Key-ncognito",
    "version": "2.0.0",
    "manifest_version": 2,
    "description": "Use a keyboard shortcut to open links incognito.",
    "homepage_url": "http:\/\/musicallyut.in",
    "icons": {
        "128": "icons\/key-ncognito-128.png"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "storage",
        "tabs",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "options_page": "src\/options\/index.html",
    "options_ui": {
        "page": "src\/options\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "src\/inject\/handler.js",
                "src\/inject\/inject.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_title": "Open same URL in incognito mode."
    }
}