Tab Titler 2.0

Tab Titler 2.0

O que é Tab Titler 2.0?

Tab Titler 2.0 é uma extensão do Chrome desenvolvida por Tim, e sua principal característica é "Tab Titler 2.0".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Tab Titler 2.0

Baixe arquivos de extensão Tab Titler 2.0 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 lets you change the title of a tab on the go and manage them over time.

Press ALT + SHIFT + S to automatically begin renaming a tab. 
Renames will persist and last for as long as you want! 
View the options page to manage all your saved tab aliases. 

Browser to Browser Renaming - if you're logged into Chrome your saved names come with you!

Its dead simple. No extra fluff and no unnecessary banter - it does the job and the way you want it done!                    

Informações Básicas da Extensão

Nome Tab Titler 2.0 Tab Titler 2.0
ID aolhnnheicpbohggibkibdmfdkmkaocc
URL Oficial https://chromewebstore.google.com/detail/tab-titler-20/aolhnnheicpbohggibkibdmfdkmkaocc
Descrição Tab Titler 2.0
Tamanho do Arquivo 42.11 KB
Contagem de Instalações 234
Versão Atual 1.0
Última Atualização 2019-02-02
Data de Publicação 2019-01-29
Classificação 4.33/5 Total de 3 Avaliações
Desenvolvedor Tim
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Titler 2.0",
    "version": "1.0",
    "description": "Tab Titler 2.0",
    "icons": {
        "16": "tab16.png",
        "48": "tab48.png",
        "128": "tab128.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "commands": {
        "rename_tab": {
            "suggested_key": {
                "default": "Alt+Shift+S"
            },
            "description": "Save a Tab Name"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}