AWS Favicons
Favicons for all AWS services
Qu'est-ce que AWS Favicons ?
AWS Favicons est une extension Chrome développée par Maddison Hellstrom, et sa fonction principale est "Favicons for all AWS services".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension AWS Favicons
Téléchargez les fichiers d'extension AWS Favicons au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | AWS Favicons |
ID | hpiicbcmcbcjppjembmamenajemlanli |
URL Officiel | https://chromewebstore.google.com/detail/aws-favicons/hpiicbcmcbcjppjembmamenajemlanli |
Description | Favicons for all AWS services |
Taille du Fichier | 327 KB |
Nombre d'Installations | 802 |
Version Actuelle | 0.2.0 |
Dernière Mise à Jour | 2022-09-17 |
Date de Publication | 2022-09-17 |
Évaluation | 5.00/5 Total 5 Évaluations |
Développeur | Maddison Hellstrom |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/b0o/aws-favicons-webextension |
URL de la Page d'Aide | https://github.com/b0o/aws-favicons-webextension/issues |
Langues Prises en Charge | 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\/*" ] } ] } |