Key-ncognito

Use a keyboard shortcut to open links incognito.

Apa itu Key-ncognito?

Key-ncognito adalah ekstensi Chrome yang dikembangkan oleh https://www.musicallyut.in, dan fitur utamanya adalah "Use a keyboard shortcut to open links incognito.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Key-ncognito

Unduh file ekstensi Key-ncognito dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Key-ncognito Key-ncognito
ID lilomadmkegmkmkjmdbbgalimcmfogfk
URL Resmi https://chromewebstore.google.com/detail/key-ncognito/lilomadmkegmkmkjmdbbgalimcmfogfk
Deskripsi Use a keyboard shortcut to open links incognito.
Ukuran File 750 KB
Jumlah Instalasi 410
Versi Saat Ini 2.0.0
Terakhir Diperbarui 2020-05-21
Tanggal Publikasi 2020-05-21
Penilaian 5.00/5 Total 8 Penilaian
Pengembang https://www.musicallyut.in
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi http://www.musicallyut.in
URL Halaman Bantuan https://github.com/musically-ut/key-ncognito/issues
Bahasa yang Didukung 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."
    }
}