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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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 फ़ाइल डाउनलोड करें
crx प्रारूप में AWS Favicon Update एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/*" ] } |