Tab Disguiser

Disguises your tab's favicon and title.

Was ist Tab Disguiser?

Tab Disguiser ist eine Chrome-Erweiterung, die von Mathk entwickelt wurde, und ihr Hauptmerkmal ist "Disguises your tab's favicon and title.".

Erweiterungsscreenshots

screenshot
screenshot

Tab Disguiser-Erweiterungs-CRX-Datei herunterladen

Laden Sie Tab Disguiser-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Tab Disguiser Tab Disguiser
ID goaelnlldimhbhipidknnkijnmfgddoc
Offizielle URL https://chromewebstore.google.com/detail/tab-disguiser/goaelnlldimhbhipidknnkijnmfgddoc
Beschreibung Disguises your tab's favicon and title.
Dateigröße 40.48 KB
Installationsanzahl 94
Aktuelle Version 1.0.1
Letztes Update 2023-03-23
Veröffentlichungsdatum 2023-03-20
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Mathk
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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."
        }
    }
}