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
官方網址 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
電子郵箱 [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"
    ]
}