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