Tab Colorizer | Customize your tab's icon!

Press Command+Shift+Space (or Ctrl+Shift+Space) to flip through tab icon colors.

O que é Tab Colorizer | Customize your tab's icon!?

Tab Colorizer | Customize your tab's icon! é uma extensão do Chrome desenvolvida por https://tabcolorizer.io, e sua principal característica é "Press Command+Shift+Space (or Ctrl+Shift+Space) to flip through tab icon colors.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Tab Colorizer | Customize your tab's icon!

Baixe arquivos de extensão Tab Colorizer | Customize your tab's icon! 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

                        On any tab you have open, you can change the color of the tab's icon to any color you've defined. Giving you the control to highlight important tabs and never lose focus of which one is which.

Using the Customizer tool, you can add as many, or as little, color choices as you desire. Pick the colors you like, in any order that works for you!                    

Informações Básicas da Extensão

Nome Tab Colorizer | Customize your tab's icon! Tab Colorizer | Customize your tab's icon!
ID nkdjooaecafkkldnkaokhpaindamlngj
URL Oficial https://chromewebstore.google.com/detail/tab-colorizer-customize-y/nkdjooaecafkkldnkaokhpaindamlngj
Descrição Press Command+Shift+Space (or Ctrl+Shift+Space) to flip through tab icon colors.
Tamanho do Arquivo 16.95 MB
Contagem de Instalações 11,417
Versão Atual 0.9
Última Atualização 2022-11-13
Data de Publicação 2018-03-19
Classificação 2.45/5 Total de 86 Avaliações
Desenvolvedor https://tabcolorizer.io
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://tabcolorizer.io
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Colorizer | Customize your tab's icon!",
    "short_name": "Tab Icon Colorizer",
    "description": "Press Command+Shift+Space (or Ctrl+Shift+Space) to flip through tab icon colors.",
    "version": "0.9",
    "author": "Mathew Komyanek",
    "manifest_version": 2,
    "options_page": "options.html",
    "web_accessible_resources": [
        "options.html"
    ],
    "background": {
        "scripts": [
            "js\/background_script.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "images\/tabColorizer_16.png",
        "default_title": "Press Command+Shift+Space (or Ctrl+Shift+Space) to flip through tab icon colors.",
        "default_popup": "popup.html"
    },
    "commands": {
        "flip-color-forward": {
            "suggested_key": {
                "default": "Ctrl+Shift+Space",
                "mac": "Command+Shift+Space"
            },
            "description": "Flip colors"
        }
    },
    "icons": {
        "16": "images\/tabColorizer_16.png",
        "32": "images\/tabColorizer_32.png",
        "48": "images\/tabColorizer_48.png",
        "128": "images\/tabColorizer_128.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "js\/content_script.js"
            ]
        }
    ]
}