Azure Favicons

Sets favicons to match the azure service you're working with on a given tab

Azure Faviconsคืออะไร?

Azure Favicons เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hugom และคุณลักษณะหลักของมันคือ "Sets favicons to match the azure service you're working with on a given tab"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Azure Favicons ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Improve your Microsoft Azure experience with favicons that reflect the azure service you're using. The "Azure Favicon" chrome extension sets favicons for a lot of Microsoft Azure services.

With more than 200 services, any Microsoft Azure heavyweight have had the experience of having a billion azure tabs open, which slows down your productivity and make your tab navigation unnecessarily difficult. But with the "Azure Favicon" chrome extension, you won't have this experience ever again!

For any security concerns, you can see the source code here: "https://github.com/dragonoverlord3000/Azure-favicon-CE" or you can download the CE and view the source code directly: "https://www.maketecheasier.com/view-source-code-chrome-extension/"                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Azure Favicons Azure Favicons
ID dkcckmcgbebifemhbiikekfpcdjccgfh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/azure-favicons/dkcckmcgbebifemhbiikekfpcdjccgfh
คำอธิบาย Sets favicons to match the azure service you're working with on a given tab
ขนาดไฟล์ 367 KB
จำนวนการติดตั้ง 361
เวอร์ชันปัจจุบัน 1.1.4
อัปเดตครั้งล่าสุด 2022-11-20
วันที่เผยแพร่ 2022-10-15
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา hugom
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/dragonoverlord3000/Azure-favicon-CE
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Azure Favicons",
    "version": "1.1.4",
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "description": "Sets favicons to match the azure service you're working with on a given tab",
    "action": {
        "default_icon": "icon.png",
        "default_title": "Azure Favicons",
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/portal.azure.com\/*",
                "https:\/\/endpoint.microsoft.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/portal.azure.com\/*",
        "https:\/\/endpoint.microsoft.com\/*"
    ]
}