AWS Favorites To Pins

Pick up AWS services from favorites list and make them into pins on the header as they should be!

Τι είναι το AWS Favorites To Pins;

Το AWS Favorites To Pins είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον aravindparappil, και η κύρια λειτουργία του είναι "Pick up AWS services from favorites list and make them into pins on the header as they should be!".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης AWS Favorites To Pins

Λήψη αρχείων επέκτασης AWS Favorites To Pins σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα AWS Favorites To Pins AWS Favorites To Pins
ID ncldghmgebieadpbefcmhicjepidmnhc
Επίσημο URL https://chromewebstore.google.com/detail/aws-favorites-to-pins/ncldghmgebieadpbefcmhicjepidmnhc
Περιγραφή Pick up AWS services from favorites list and make them into pins on the header as they should be!
Μέγεθος Αρχείου 22.4 KB
Αριθμός Εγκαταστάσεων 88
Τρέχουσα Έκδοση 1.1.0
Τελευταία Ενημέρωση 2020-10-06
Ημερομηνία Δημοσίευσης 2020-09-23
Αξιολόγηση 5.00/5 Συνολικά 9 Αξιολογήσεις
Προγραμματιστής aravindparappil
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/aravindparappil46/aws-favs-to-pins
Υποστηριζόμενες Γλώσσες 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"
    }
}