Key-ncognito

Use a keyboard shortcut to open links incognito.

Was ist Key-ncognito?

Key-ncognito ist eine Chrome-Erweiterung, die von https://www.musicallyut.in entwickelt wurde, und ihr Hauptmerkmal ist "Use a keyboard shortcut to open links incognito.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Key-ncognito-Erweiterungs-CRX-Datei herunterladen

Laden Sie Key-ncognito-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Key-ncognito Key-ncognito
ID lilomadmkegmkmkjmdbbgalimcmfogfk
Offizielle URL https://chromewebstore.google.com/detail/key-ncognito/lilomadmkegmkmkjmdbbgalimcmfogfk
Beschreibung Use a keyboard shortcut to open links incognito.
Dateigröße 750 KB
Installationsanzahl 410
Aktuelle Version 2.0.0
Letztes Update 2020-05-21
Veröffentlichungsdatum 2020-05-21
Bewertung 5.00/5 Insgesamt 8 Bewertungen
Entwickler https://www.musicallyut.in
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://www.musicallyut.in
Hilfeseite URL https://github.com/musically-ut/key-ncognito/issues
Unterstützte Sprachen 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."
    }
}