AWS Favorites To Pins
Pick up AWS services from favorites list and make them into pins on the header as they should be!
Qu'est-ce que AWS Favorites To Pins ?
AWS Favorites To Pins est une extension Chrome développée par aravindparappil, et sa fonction principale est "Pick up AWS services from favorites list and make them into pins on the header as they should be!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension AWS Favorites To Pins
Téléchargez les fichiers d'extension AWS Favorites To Pins 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
For your AWS Console, create pins for favorite services on the navigation header and save a few clicks! Pins are created based on the services you have favorited. You can decide how many pins to show on the navigation header & how they should appear - as just icons, just labels or both icon & label! This project is open-source. Please feel free to take a look at the code and contribute to make it better! https://github.com/aravindparappil46/aws-favs-to-pins If you found this extension useful, please leave a review & spread the joy! Release Notes v1.1 - Feature | Users can now select required number of pins & how they want the pins to appear (as only icons, only labels or both icon & label) v1.0 - Bug fix | Pins were not displayed occasionally
Informations de Base sur l'Extension
Nom | AWS Favorites To Pins |
ID | ncldghmgebieadpbefcmhicjepidmnhc |
URL Officiel | https://chromewebstore.google.com/detail/aws-favorites-to-pins/ncldghmgebieadpbefcmhicjepidmnhc |
Description | Pick up AWS services from favorites list and make them into pins on the header as they should be! |
Taille du Fichier | 22.4 KB |
Nombre d'Installations | 88 |
Version Actuelle | 1.1.0 |
Dernière Mise à Jour | 2020-10-06 |
Date de Publication | 2020-09-23 |
Évaluation | 5.00/5 Total 9 Évaluations |
Développeur | aravindparappil |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/aravindparappil46/aws-favs-to-pins |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "AWS Favorites To Pins", "version": "1.1.0", "description": "Pick up AWS services from favorites list and make them into pins on the header as they should be!", "manifest_version": 2, "options_ui": { "page": "options\/options.html", "open_in_tab": false }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*.console.aws.amazon.com\/*", "https:\/\/phd.aws.amazon.com\/*", "https:\/\/*.console.amazonaws-us-gov.com\/*", "https:\/\/*.console.amazonaws.cn\/*" ], "css": [ "styles.css" ], "js": [ "aws-pins.js" ] } ], "icons": { "128": "logo.png" } } |