Azure DevOps icons

Adds colour-coded tab icons and bookmarks for Azure DevOps

Apa itu Azure DevOps icons?

Azure DevOps icons adalah ekstensi Chrome yang dikembangkan oleh wwestrop, dan fitur utamanya adalah "Adds colour-coded tab icons and bookmarks for Azure DevOps".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Azure DevOps icons

Unduh file ekstensi Azure DevOps icons dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Azure DevOps icons Azure DevOps icons
ID pgbejjjgidgpciebpdiajlljpipdpcfe
URL Resmi https://chromewebstore.google.com/detail/azure-devops-icons/pgbejjjgidgpciebpdiajlljpipdpcfe
Deskripsi Adds colour-coded tab icons and bookmarks for Azure DevOps
Ukuran File 10.98 KB
Jumlah Instalasi 84
Versi Saat Ini 1.0.16
Terakhir Diperbarui 2023-03-08
Tanggal Publikasi 2022-10-21
Penilaian 5.00/5 Total 1 Penilaian
Pengembang wwestrop
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/wwestrop/AzureDevopsIcons
Bahasa yang Didukung 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"
    ]
}