Customize AWS Console Header
Change AWS Console Header. background color and text label.
什麼是Customize AWS Console Header?
Customize AWS Console Header是由bunjik開發的Chrome擴展程式,該擴展的主要功能是“Change AWS Console Header. background color and text label.”。
擴展截圖
下載Customize AWS Console Header擴展crx文件
下載Customize AWS Console Header擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
customize aws console header. change header background color and append text label. Multiple combinations of account name and region can be set.
擴展基本資訊
名稱 | Customize AWS Console Header |
ID | cjpikjjajakahcpglopbmobcoiibcpcd |
官方網址 | https://chromewebstore.google.com/detail/customize-aws-console-hea/cjpikjjajakahcpglopbmobcoiibcpcd |
簡介 | Change AWS Console Header. background color and text label. |
檔案大小 | 266 KB |
安裝次數 | 1,573 |
目前版本 | 1.0.6 |
更新時間 | 2023-10-28 |
上架時間 | 2020-06-09 |
評分 | 4.50/5 共 6 次評分 |
開發者 | bunjik |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/bunjik/aws-console-customize-extension |
支援的語言 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_ext_name__", "description": "__MSG_ext_description__", "version": "1.0.6", "default_locale": "en", "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/*.console.aws.amazon.com\/*" ], "js": [ "js\/jquery.min.js", "extension.js" ], "css": [ "css\/extension.css" ] } ], "options_ui": { "browser_style": true, "open_in_tab": true, "page": "options.html" }, "permissions": [ "storage" ], "icons": { "48": "img\/icon48.png", "128": "img\/icon128.png" } } |