Tab Disguiser

Disguises your tab's favicon and title.

Co to jest Tab Disguiser?

Tab Disguiser to rozszerzenie Chrome opracowane przez Mathk, a jego główną funkcją jest „Disguises your tab's favicon and title.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Tab Disguiser

Pobierz pliki rozszerzeń Tab Disguiser w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Tab Disguiser Tab Disguiser
ID goaelnlldimhbhipidknnkijnmfgddoc
Oficjalny URL https://chromewebstore.google.com/detail/tab-disguiser/goaelnlldimhbhipidknnkijnmfgddoc
Opis Disguises your tab's favicon and title.
Rozmiar pliku 40.48 KB
Liczba instalacji 94
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2023-03-23
Data Publikacji 2023-03-20
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Mathk
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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."
        }
    }
}