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
电子邮箱 [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\/*"
            ]
        }
    ]
}