Refined AWS Console

Simplifies the Amazon Web Services Console interface.

Refined AWS Console란 무엇입니까?

Refined AWS Console은(는) Akinjide Bankole에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simplifies the Amazon Web Services Console interface."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Refined AWS Console 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        - Pin More! Do More! (Quick navigation appears below header)
- Reduce navigation to services tab with shortcuts (Just press ?)
- Switch between AWS assigned roles
- Switch between AWS available regions
- Show custom navigation menus (Sign Out and more)
- Hide unused navigation menus

Learn more about Refined AWS Console at https://github.com/akinjide/refined-aws

CHANGELOG at https://github.com/akinjide/refined-aws/blob/master/CHANGELOG.md
- 2.6.1@latest: Publish FireFox addon on site                    

확장 프로그램 기본 정보

이름 Refined AWS Console Refined AWS Console
ID ockddcaogdonfmcfhdblbflchnjgiilc
공식 URL https://chromewebstore.google.com/detail/refined-aws-console/ockddcaogdonfmcfhdblbflchnjgiilc
설명 Simplifies the Amazon Web Services Console interface.
파일 크기 53.19 KB
설치 횟수 98
현재 버전 2.6.1
최근 업데이트 2020-12-02
출시 날짜 2020-02-03
개발자 Akinjide Bankole
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/akinjide/refined-aws
도움말 페이지 URL https://github.com/akinjide/refined-aws/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Refined AWS Console",
    "version": "2.6.1",
    "description": "Simplifies the Amazon Web Services Console interface.",
    "homepage_url": "https:\/\/www.github.com\/akinjide\/refined-aws",
    "manifest_version": 2,
    "minimum_chrome_version": "62",
    "permissions": [
        "storage",
        "alarms"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "main.js"
        ]
    },
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "https:\/\/console.aws.amazon.com\/*",
                "https:\/\/*.console.aws.amazon.com\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "jquery.slim.min.js",
                "browser-polyfill.min.js",
                "content.js"
            ]
        }
    ]
}