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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
    ]
}