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"
    }
}