Incognito click shorcut

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

Qu'est-ce que Incognito click shorcut ?

Incognito click shorcut est une extension Chrome développée par Unknown, et sa fonction principale est "allows you to set a shorcut + click to open link in a new incognito tab".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Incognito click shorcut

Téléchargez les fichiers d'extension Incognito click shorcut au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        tired of right clicking?
just like set a shorcut

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

Informations de Base sur l'Extension

Nom Incognito click shorcut Incognito click shorcut
ID cdmmjdegebepfegldinlegbkmgdnocoe
URL Officiel 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
Taille du Fichier 32.48 KB
Nombre d'Installations 27
Version Actuelle 1.0
Dernière Mise à Jour 2019-08-15
Date de Publication 2019-08-09
Évaluation 5.00/5 Total 1 Évaluations
Développeur Unknown
Type de Paiement free
Langues Prises en Charge 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
    }
}