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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة AWS Favicon Update
قم بتنزيل ملفات الامتداد AWS Favicon Update بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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\/*" ] } |