Azure Favicons

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

Azure Faviconsとは何ですか?

Azure Faviconsはhugomによって開発されたChromeの拡張機能で、その主な機能は「Sets favicons to match the azure service you're working with on a given tab」です。

拡張機能のスクリーンショット

screenshot

Azure Favicons拡張機能のCRXファイルをダウンロード

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
Eメール [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\/*"
    ]
}