Customize AWS Console Header
Change AWS Console Header. background color and text label.
Co to jest Customize AWS Console Header?
Customize AWS Console Header to rozszerzenie Chrome opracowane przez bunjik, a jego główną funkcją jest „Change AWS Console Header. background color and text label.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Customize AWS Console Header
Pobierz pliki rozszerzeń Customize AWS Console Header w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
customize aws console header. change header background color and append text label. Multiple combinations of account name and region can be set.
Podstawowe informacje o rozszerzeniu
Nazwa | Customize AWS Console Header |
ID | cjpikjjajakahcpglopbmobcoiibcpcd |
Oficjalny URL | https://chromewebstore.google.com/detail/customize-aws-console-hea/cjpikjjajakahcpglopbmobcoiibcpcd |
Opis | Change AWS Console Header. background color and text label. |
Rozmiar pliku | 266 KB |
Liczba instalacji | 1,573 |
Aktualna Wersja | 1.0.6 |
Ostatnia Aktualizacja | 2023-10-28 |
Data Publikacji | 2020-06-09 |
Ocena | 4.50/5 Łącznie 6 Oceny |
Deweloper | bunjik |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/bunjik/aws-console-customize-extension |
Obsługiwane Języki | 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" } } |