Tab Disguiser

Disguises your tab's favicon and title.

Qu'est-ce que Tab Disguiser ?

Tab Disguiser est une extension Chrome développée par Mathk, et sa fonction principale est "Disguises your tab's favicon and title.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Tab Disguiser

Téléchargez les fichiers d'extension Tab Disguiser 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

                        Tab Disguiser is a chrome extension that will mask your tab title and favicon to a specific website of your choosing. This makes it so when the tab is not open, it looks like a different website. With this extension, you can also abort your current tab to another tab quickly.

To edit the websites the extension uses, press the extensions button and select "Tab Disguiser." 

Keybinds:
     Abort Tab- Alt+Q
     Disguise Tab- Alt+R                    

Informations de Base sur l'Extension

Nom Tab Disguiser Tab Disguiser
ID goaelnlldimhbhipidknnkijnmfgddoc
URL Officiel https://chromewebstore.google.com/detail/tab-disguiser/goaelnlldimhbhipidknnkijnmfgddoc
Description Disguises your tab's favicon and title.
Taille du Fichier 40.48 KB
Nombre d'Installations 94
Version Actuelle 1.0.1
Dernière Mise à Jour 2023-03-23
Date de Publication 2023-03-20
Évaluation 5.00/5 Total 1 Évaluations
Développeur Mathk
Email [email protected]
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Disguiser",
    "version": "1.0.1",
    "description": "Disguises your tab's favicon and title.",
    "manifest_version": 3,
    "author": "Mathk",
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Tab Disguiser"
    },
    "commands": {
        "abort": {
            "suggested_key": {
                "default": "Alt+Q"
            },
            "description": "Aborts open tab and replaces it."
        },
        "abort-last": {
            "suggested_key": {
                "default": "Alt+A"
            },
            "description": "Aborts the previous tab and replaces it."
        },
        "disguise": {
            "suggested_key": {
                "default": "Alt+R"
            },
            "description": "Disguises current tab."
        }
    }
}