Incognito click shorcut

allows you to set a shorcut + click to open link in a new incognito tab

What is Incognito click shorcut?

Incognito click shorcut is a Chrome extension developed by Unknown, and its main feature is "allows you to set a shorcut + click to open link in a new incognito tab".

Extension Screenshots

screenshot

Download Incognito click shorcut Extension CRX File

Download Incognito click shorcut extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        tired of right clicking?
just like set a shorcut

source code available btw: https://github.com/snoozed-dev/incognito-click-shorcut                    

Extension Basic Information

Name Incognito click shorcut Incognito click shorcut
ID cdmmjdegebepfegldinlegbkmgdnocoe
Official URL https://chromewebstore.google.com/detail/incognito-click-shorcut/cdmmjdegebepfegldinlegbkmgdnocoe
Description allows you to set a shorcut + click to open link in a new incognito tab
File Size 32.48 KB
Installation Count 27
Current Version 1.0
Last Updated 2019-08-15
Publish Date 2019-08-09
Rating 5.00/5 Total 1 Ratings
Developer Unknown
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Incognito click shorcut",
    "version": "1.0",
    "description": "allows you to set a shorcut + click to open link in a new incognito tab",
    "manifest_version": 2,
    "permissions": [
        "storage",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "trigger.js"
        ],
        "persistent": false
    }
}