AWS Favicon Update

IAM shouldn't be the only tab with a unique favicon! This sets favicons for many AWS services, so your tabs make more sense.

什么是AWS Favicon Update?

AWS Favicon Update是由jaimebarriga.com开发的Chrome扩展程序,该扩展的主要功能是“IAM shouldn't be the only tab with a unique favicon! This sets favicons for many AWS services, so your tabs make more sense.”。

扩展截图

screenshot

下载AWS Favicon Update扩展crx文件

下载AWS Favicon Update扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        I like to work with a lot of tabs open.  And I mean a lot.  But when I'm deep in AWS, all my tabs look the same (except IAM) and it's easy to get lost!

This extension sets the correct favicon for a bunch of AWS services, so it's easier to see at a glance what all your tabs are for.  Over 100 favicons are included, with more on the way!

And it doesn't read your browsing history (like some other favicon extensions do).

The code all lives here: https://github.com/JB4GDI/awsfaviconupdater

If this little extension has made your life easier, the tip jar can be found here: https://www.paypal.me/JB4GDI/

And be sure to check out my AWS Region Color Highlights extension: https://chrome.google.com/webstore/detail/aws-region-color-highligh/kdjchigefmkankimfkgolpfincgbffkg                    

扩展基本信息

名称 AWS Favicon Update AWS Favicon Update
ID ohloajnmmkniehhbmjakbejnomonmijc
官方URL https://chromewebstore.google.com/detail/aws-favicon-update/ohloajnmmkniehhbmjakbejnomonmijc
简介 IAM shouldn't be the only tab with a unique favicon! This sets favicons for many AWS services, so your tabs make more sense.
文件大小 86.04 KB
安装次数 1,732
当前版本 2.1
更新时间 2019-09-08
上架时间 2019-09-06
评分 4.69/5 共13次评分
开发者 jaimebarriga.com
付费类型 free
扩展官网 http://jaimebarriga.com/
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AWS Favicon Update",
    "description": "IAM shouldn't be the only tab with a unique favicon!  This sets favicons for many AWS services, so your tabs make more sense.",
    "version": "2.1",
    "author": "Jaime Barriga",
    "icons": {
        "16": "colorcube16.png",
        "48": "colorcube48.png",
        "128": "colorcube128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.aws.amazon.com\/*",
                "https:\/\/*.amazonaws-us-gov.com\/*"
            ],
            "js": [
                "faviconupdate.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "icons\/*"
    ]
}