Azure DevOps icons
Adds colour-coded tab icons and bookmarks for Azure DevOps
Was ist Azure DevOps icons?
Azure DevOps icons ist eine Chrome-Erweiterung, die von wwestrop entwickelt wurde, und ihr Hauptmerkmal ist "Adds colour-coded tab icons and bookmarks for Azure DevOps".
Erweiterungsscreenshots
Azure DevOps icons-Erweiterungs-CRX-Datei herunterladen
Laden Sie Azure DevOps icons-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Azure DevOps icons |
ID | pgbejjjgidgpciebpdiajlljpipdpcfe |
Offizielle URL | https://chromewebstore.google.com/detail/azure-devops-icons/pgbejjjgidgpciebpdiajlljpipdpcfe |
Beschreibung | Adds colour-coded tab icons and bookmarks for Azure DevOps |
Dateigröße | 10.98 KB |
Installationsanzahl | 84 |
Aktuelle Version | 1.0.16 |
Letztes Update | 2023-03-08 |
Veröffentlichungsdatum | 2022-10-21 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | wwestrop |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/wwestrop/AzureDevopsIcons |
Unterstützte Sprachen | 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" ] } |