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