AWS Favicons

Favicons for all AWS services

AWS Faviconsとは何ですか?

AWS FaviconsはMaddison Hellstromによって開発されたChromeの拡張機能で、その主な機能は「Favicons for all AWS services」です。

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

screenshot

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

AWS Favicons拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Tired of all your AWS browser tabs having the same orange cube favicon? This extension fixes that by setting the favicon to the appropriate one for the current service.                    

拡張機能の基本情報

名前 AWS Favicons AWS Favicons
ID hpiicbcmcbcjppjembmamenajemlanli
公式URL https://chromewebstore.google.com/detail/aws-favicons/hpiicbcmcbcjppjembmamenajemlanli
説明 Favicons for all AWS services
ファイルサイズ 327 KB
インストール数 802
現在のバージョン 0.2.0
最終更新日 2022-09-17
公開日 2022-09-17
評価 5.00/5 合計 5 レビュー
開発者 Maddison Hellstrom
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/b0o/aws-favicons-webextension
ヘルプページのURL https://github.com/b0o/aws-favicons-webextension/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "AWS Favicons",
    "description": "Favicons for all AWS services",
    "version": "0.2.0",
    "author": "Maddison Hellstrom",
    "icons": {
        "32": "assets\/extension-icon-32.png",
        "64": "assets\/extension-icon-64.png",
        "128": "assets\/extension-icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.aws.amazon.com\/*"
            ],
            "js": [
                "bundle.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*"
            ],
            "matches": [
                "https:\/\/*.aws.amazon.com\/*"
            ]
        }
    ]
}