Azure DevOps icons

Adds colour-coded tab icons and bookmarks for Azure DevOps

Azure DevOps iconsคืออะไร?

Azure DevOps icons เป็นส่วนขยายของ Chrome ที่พัฒนาโดย wwestrop และคุณลักษณะหลักของมันคือ "Adds colour-coded tab icons and bookmarks for Azure DevOps"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Azure DevOps icons

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}