Incognito click shorcut

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

什么是Incognito click shorcut?

Incognito click shorcut是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“allows you to set a shorcut + click to open link in a new incognito tab”。

扩展截图

screenshot

下载Incognito click shorcut扩展crx文件

下载Incognito click shorcut扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        tired of right clicking?
just like set a shorcut

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

扩展基本信息

名称 Incognito click shorcut Incognito click shorcut
ID cdmmjdegebepfegldinlegbkmgdnocoe
官方URL https://chromewebstore.google.com/detail/incognito-click-shorcut/cdmmjdegebepfegldinlegbkmgdnocoe
简介 allows you to set a shorcut + click to open link in a new incognito tab
文件大小 32.48 KB
安装次数 27
当前版本 1.0
更新时间 2019-08-15
上架时间 2019-08-09
评分 5.00/5 共1次评分
开发者 Unknown
付费类型 free
支持的语言 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
    }
}