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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jaimebarriga.com และคุณลักษณะหลักของมันคือ "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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AWS Favicon Update

ดาวน์โหลดไฟล์ส่วนขยาย 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\/*"
    ]
}