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文件

下載Refined AWS Console擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        - 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
官方網址 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"
            ]
        }
    ]
}