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은(는) aravindparappil에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Pick up AWS services from favorites list and make them into pins on the header as they should be!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

AWS Favorites To Pins 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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