Key-ncognito

Use a keyboard shortcut to open links incognito.

Key-ncognito क्या है?

Key-ncognito https://www.musicallyut.in द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Use a keyboard shortcut to open links incognito."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Key-ncognito एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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."
    }
}