Tab Disguiser

Disguises your tab's favicon and title.

Hvad er Tab Disguiser?

Tab Disguiser er en Chrome-udvidelse udviklet af Mathk, og dens hovedfunktion er "Disguises your tab's favicon and title.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Tab Disguiser-udvidelses-CRX-fil

Download Tab Disguiser-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Tab Disguiser Tab Disguiser
ID goaelnlldimhbhipidknnkijnmfgddoc
Officiel URL https://chromewebstore.google.com/detail/tab-disguiser/goaelnlldimhbhipidknnkijnmfgddoc
Beskrivelse Disguises your tab's favicon and title.
Filstørrelse 40.48 KB
Antal Installationer 94
Nuværende Version 1.0.1
Senest Opdateret 2023-03-23
Udgivelsesdato 2023-03-20
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Mathk
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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."
        }
    }
}