AWS Peacock Management Console
Browser Extension to change color of AWS Management Console, by Account ID
AWS Peacock Management Consoleとは何ですか?
AWS Peacock Management Consoleはhirogaによって開発されたChromeの拡張機能で、その主な機能は「Browser Extension to change color of AWS Management Console, by Account ID」です。
拡張機能のスクリーンショット
AWS Peacock Management Console拡張機能のCRXファイルをダウンロード
AWS Peacock Management Console拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
AWS Peacock Management Console store configuration which maps environment(Account ID and Region) to style(color). In AWS Management Console, it modify HTML tags to change color and show account alias. If logged in by AWS SSO, show account name than account name.
拡張機能の基本情報
名前 | AWS Peacock Management Console |
ID | bknjjajglapfhbdcfgmhgkgfomkkaidj |
公式URL | https://chromewebstore.google.com/detail/aws-peacock-management-co/bknjjajglapfhbdcfgmhgkgfomkkaidj |
説明 | Browser Extension to change color of AWS Management Console, by Account ID |
ファイルサイズ | 33.99 KB |
インストール数 | 2,047 |
現在のバージョン | 2.9 |
最終更新日 | 2024-01-03 |
公開日 | 2021-10-16 |
評価 | 4.50/5 合計 4 レビュー |
開発者 | hiroga |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/xhiroga/aws-peacock-management-console |
ヘルプページのURL | https://github.com/xhiroga/aws-peacock-management-console/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "AWS Peacock Management Console", "description": "Browser Extension to change color of AWS Management Console, by Account ID", "version": "2.9", "icons": { "128": "icons\/128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/*.console.aws.amazon.com\/*", "https:\/\/phd.aws.amazon.com\/*", "https:\/\/*.console.amazonaws-us-gov.com\/*", "https:\/\/*.console.amazonaws.cn\/*" ], "run_at": "document_end" }, { "js": [ "scraping.js" ], "matches": [ "https:\/\/*.awsapps.com\/start*" ], "run_at": "document_end" } ], "options_ui": { "page": "options.html", "open_in_tab": true }, "browser_specific_settings": { "gecko": { "id": "{5b1686a2-506f-4ca5-ab39-91cd328502aa}" } } } |