Tab Namer

Renames tabs to: " ".

Cos'è Tab Namer?

Tab Namer è un'estensione di Chrome sviluppata da James Stout, e la sua funzione principale è "Renames tabs to: " ".".

Scarica il file CRX dell'estensione Tab Namer

Scarica i file di estensione Tab Namer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Tab Namer Tab Namer
ID mhlkchmeabcgmaedklpajbokfaapcgoo
URL Ufficiale https://chromewebstore.google.com/detail/tab-namer/mhlkchmeabcgmaedklpajbokfaapcgoo
Descrizione Renames tabs to: " ".
Dimensione del File 4.84 KB
Conteggio Installazioni 31
Versione Corrente 1.2
Ultimo Aggiornamento 2018-05-26
Data di Pubblicazione 2018-05-26
Valutazione 3.67/5 Totale 3 Valutazioni
Sviluppatore James Stout
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}