AWS Favicons
Favicons for all AWS services
What is AWS Favicons?
AWS Favicons is a Chrome extension developed by Maddison Hellstrom, and its main feature is "Favicons for all AWS services".
Extension Screenshots
Download AWS Favicons Extension CRX File
Download AWS Favicons extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Tired of all your AWS browser tabs having the same orange cube favicon? This extension fixes that by setting the favicon to the appropriate one for the current service.
Extension Basic Information
Name | AWS Favicons |
ID | hpiicbcmcbcjppjembmamenajemlanli |
Official URL | https://chromewebstore.google.com/detail/aws-favicons/hpiicbcmcbcjppjembmamenajemlanli |
Description | Favicons for all AWS services |
File Size | 327 KB |
Installation Count | 802 |
Current Version | 0.2.0 |
Last Updated | 2022-09-17 |
Publish Date | 2022-09-17 |
Rating | 5.00/5 Total 5 Ratings |
Developer | Maddison Hellstrom |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/b0o/aws-favicons-webextension |
Help Page URL | https://github.com/b0o/aws-favicons-webextension/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "AWS Favicons", "description": "Favicons for all AWS services", "version": "0.2.0", "author": "Maddison Hellstrom", "icons": { "32": "assets\/extension-icon-32.png", "64": "assets\/extension-icon-64.png", "128": "assets\/extension-icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.aws.amazon.com\/*" ], "js": [ "bundle.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "icons\/*" ], "matches": [ "https:\/\/*.aws.amazon.com\/*" ] } ] } |