Azure DevOps icons
Adds colour-coded tab icons and bookmarks for Azure DevOps
Cos'è Azure DevOps icons?
Azure DevOps icons è un'estensione di Chrome sviluppata da wwestrop, e la sua funzione principale è "Adds colour-coded tab icons and bookmarks for Azure DevOps".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Azure DevOps icons
Scarica i file di estensione Azure DevOps icons in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Azure DevOps icons |
ID | pgbejjjgidgpciebpdiajlljpipdpcfe |
URL Ufficiale | https://chromewebstore.google.com/detail/azure-devops-icons/pgbejjjgidgpciebpdiajlljpipdpcfe |
Descrizione | Adds colour-coded tab icons and bookmarks for Azure DevOps |
Dimensione del File | 10.98 KB |
Conteggio Installazioni | 84 |
Versione Corrente | 1.0.16 |
Ultimo Aggiornamento | 2023-03-08 |
Data di Pubblicazione | 2022-10-21 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | wwestrop |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/wwestrop/AzureDevopsIcons |
Lingue Supportate | 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" ] } |