Azure Favicons

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

Azure Favicons क्या है?

Azure Favicons hugom द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Sets favicons to match the azure service you're working with on a given tab"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Azure Favicons एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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\/*"
    ]
}