Tab Renamer

Customize the title of your chrome tabs

O que é Tab Renamer?

Tab Renamer é uma extensão do Chrome desenvolvida por Mujtaba Al-Tameemi, e sua principal característica é "Customize the title of your chrome tabs".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Tab Renamer

Baixe arquivos de extensão Tab Renamer 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

                        If you want to customize the title of your tabs, this extension is for you. 

There are 3 ways to use it:
1. Click on the extension's icon in the top right corner of your browser.
2. Use the shortcut "control/command + B".
3. Type "RN" in chrome's address bar and press tab.                    

Informações Básicas da Extensão

Nome Tab Renamer Tab Renamer
ID npdnpkaiegjmocaekcdffkilfmfpedih
URL Oficial https://chromewebstore.google.com/detail/tab-renamer/npdnpkaiegjmocaekcdffkilfmfpedih
Descrição Customize the title of your chrome tabs
Tamanho do Arquivo 13.15 KB
Contagem de Instalações 217
Versão Atual 1.0.2
Última Atualização 2016-12-24
Data de Publicação 2016-12-23
Classificação 2.89/5 Total de 9 Avaliações
Desenvolvedor Mujtaba Al-Tameemi
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Renamer",
    "short_name": "Tab Renamer",
    "author": "Mujtaba Al-Tameemi",
    "description": "Customize the title of your chrome tabs",
    "version": "1.0.2",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "omnibox": {
        "keyword": "rn"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+B",
                "mac": "Command+B"
            }
        }
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "24": "icons\/24.png",
            "32": "icons\/32.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ]
}