Tab Label

This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…

O que é Tab Label?

Tab Label é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Tab Label

Baixe arquivos de extensão Tab Label no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        This extension allow you to rename tab title. 

This is very useful extension especially in case you have multiple tabs opened with similar title. So you can make them more distinct by changing their title.                    

Informações Básicas da Extensão

Nome Tab Label Tab Label
ID jenllplbncahmaikpkppcikmfadialdk
URL Oficial https://chromewebstore.google.com/detail/tab-label/jenllplbncahmaikpkppcikmfadialdk
Descrição This extension allow you to rename tab title. This is very useful extension especially in case you have multiple tabs opened with…
Tamanho do Arquivo 7.58 KB
Contagem de Instalações 252
Versão Atual 0.0.1
Última Atualização 2020-04-28
Data de Publicação 2020-04-25
Classificação 2.14/5 Total de 7 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Label",
    "version": "0.0.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon_16.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}