Azure DevOps icons

Adds colour-coded tab icons and bookmarks for Azure DevOps

Azure DevOps iconsとは何ですか?

Azure DevOps iconsはwwestropによって開発されたChromeの拡張機能で、その主な機能は「Adds colour-coded tab icons and bookmarks for Azure DevOps」です。

拡張機能のスクリーンショット

screenshot
screenshot

Azure DevOps icons拡張機能のCRXファイルをダウンロード

Azure DevOps icons拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Azure DevOps icons Azure DevOps icons
ID pgbejjjgidgpciebpdiajlljpipdpcfe
公式URL https://chromewebstore.google.com/detail/azure-devops-icons/pgbejjjgidgpciebpdiajlljpipdpcfe
説明 Adds colour-coded tab icons and bookmarks for Azure DevOps
ファイルサイズ 10.98 KB
インストール数 84
現在のバージョン 1.0.16
最終更新日 2023-03-08
公開日 2022-10-21
評価 5.00/5 合計 1 レビュー
開発者 wwestrop
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/wwestrop/AzureDevopsIcons
対応言語 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"
    ]
}