Key-ncognito

Use a keyboard shortcut to open links incognito.

Τι είναι το Key-ncognito;

Το Key-ncognito είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.musicallyut.in, και η κύρια λειτουργία του είναι "Use a keyboard shortcut to open links incognito.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Key-ncognito

Λήψη αρχείων επέκτασης Key-ncognito σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Key-ncognito Key-ncognito
ID lilomadmkegmkmkjmdbbgalimcmfogfk
Επίσημο URL https://chromewebstore.google.com/detail/key-ncognito/lilomadmkegmkmkjmdbbgalimcmfogfk
Περιγραφή Use a keyboard shortcut to open links incognito.
Μέγεθος Αρχείου 750 KB
Αριθμός Εγκαταστάσεων 410
Τρέχουσα Έκδοση 2.0.0
Τελευταία Ενημέρωση 2020-05-21
Ημερομηνία Δημοσίευσης 2020-05-21
Αξιολόγηση 5.00/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής https://www.musicallyut.in
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://www.musicallyut.in
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/musically-ut/key-ncognito/issues
Υποστηριζόμενες Γλώσσες 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."
    }
}