Azure DevOps icons

Adds colour-coded tab icons and bookmarks for Azure DevOps

O que é Azure DevOps icons?

Azure DevOps icons é uma extensão do Chrome desenvolvida por wwestrop, e sua principal característica é "Adds colour-coded tab icons and bookmarks for Azure DevOps".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Azure DevOps icons

Baixe arquivos de extensão Azure DevOps icons 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

                        Seemingly every website these days has a similar blue icon, making them all blur into one when your browser is overloaded with tabs and icons.

Azure DevOps is particularly bad as the site consists of several unrelated modules, all of which share the same icon, making hunting for a tab a pain.

This browser extensions gives each tab a distinct icon to help you more easily distinguish what you're viewing.                    

Informações Básicas da Extensão

Nome Azure DevOps icons Azure DevOps icons
ID pgbejjjgidgpciebpdiajlljpipdpcfe
URL Oficial https://chromewebstore.google.com/detail/azure-devops-icons/pgbejjjgidgpciebpdiajlljpipdpcfe
Descrição Adds colour-coded tab icons and bookmarks for Azure DevOps
Tamanho do Arquivo 10.98 KB
Contagem de Instalações 84
Versão Atual 1.0.16
Última Atualização 2023-03-08
Data de Publicação 2022-10-21
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor wwestrop
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/wwestrop/AzureDevopsIcons
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Azure DevOps icons",
    "version": "1.0.16",
    "description": "Adds colour-coded tab icons and bookmarks for Azure DevOps",
    "homepage_url": "https:\/\/github.com\/wwestrop\/AzureDevopsIcons",
    "icons": {
        "48": "icon.png",
        "32": "icon.png",
        "96": "icon.png",
        "16": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.visualstudio.com\/*",
                "*:\/\/dev.azure.com\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "action": [],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs"
    ]
}