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.

O que é AWS Favicon Update?

AWS Favicon Update é uma extensão do Chrome desenvolvida por jaimebarriga.com, e sua principal característica é "IAM shouldn't be the only tab with a unique favicon! This sets favicons for many AWS services, so your tabs make more sense.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão AWS Favicon Update

Baixe arquivos de extensão AWS Favicon Update no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome AWS Favicon Update AWS Favicon Update
ID ohloajnmmkniehhbmjakbejnomonmijc
URL Oficial https://chromewebstore.google.com/detail/aws-favicon-update/ohloajnmmkniehhbmjakbejnomonmijc
Descrição IAM shouldn't be the only tab with a unique favicon! This sets favicons for many AWS services, so your tabs make more sense.
Tamanho do Arquivo 86.04 KB
Contagem de Instalações 1,732
Versão Atual 2.1
Última Atualização 2019-09-08
Data de Publicação 2019-09-06
Classificação 4.69/5 Total de 13 Avaliações
Desenvolvedor jaimebarriga.com
Tipo de Pagamento free
Site da Extensão http://jaimebarriga.com/
Idiomas Suportados 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\/*"
    ]
}