Tab Namer

Renames tabs to: " ".

Co to jest Tab Namer?

Tab Namer to rozszerzenie Chrome opracowane przez James Stout, a jego główną funkcją jest „Renames tabs to: " ".”.

Pobierz plik CRX rozszerzenia Tab Namer

Pobierz pliki rozszerzeń Tab Namer 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

                        Renames all tabs to follow a standard format: "  ". It is simple and reliable, but if you are looking for something configurable then this is not the extension for you.                    

Podstawowe informacje o rozszerzeniu

Nazwa Tab Namer Tab Namer
ID mhlkchmeabcgmaedklpajbokfaapcgoo
Oficjalny URL https://chromewebstore.google.com/detail/tab-namer/mhlkchmeabcgmaedklpajbokfaapcgoo
Opis Renames tabs to: " ".
Rozmiar pliku 4.84 KB
Liczba instalacji 31
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2018-05-26
Data Publikacji 2018-05-26
Ocena 3.67/5 Łącznie 3 Oceny
Deweloper James Stout
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Namer",
    "version": "1.2",
    "description": "Renames tabs to: \"  \".",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start"
        }
    ]
}