AWS Colorful Navbar
Change navbar color and flag according to AWS region
AWS Colorful Navbar क्या है?
AWS Colorful Navbar nalbam द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Change navbar color and flag according to AWS region"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में AWS Colorful Navbar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
In the AWS console, you can select a region by country. However, the expression according to the region is not clear, so it is sometimes confusing which region is currently selected. This extension will change the navigation background at the top to the regional color of the selected region. And the flag is displayed in front of the region name. see: https://github.com/nalbam/aws-navbar-extension
एक्सटेंशन की मूल जानकारी
नाम | AWS Colorful Navbar |
ID | kgifmgnlchjjippdpkblbdlfidcpceme |
आधिकारिक URL | https://chromewebstore.google.com/detail/aws-colorful-navbar/kgifmgnlchjjippdpkblbdlfidcpceme |
विवरण | Change navbar color and flag according to AWS region |
फ़ाइल का आकार | 1.77 MB |
स्थापना संख्या | 248 |
वर्तमान संस्करण | 1.7.1 |
अंतिम अपडेट | 2022-11-16 |
प्रकाशन तिथि | 2022-05-24 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | nalbam |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/nalbam/aws-navbar-extension |
गोपनीयता नीति पृष्ठ URL | https://nalbam.github.io/privacy |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "AWS Colorful Navbar", "description": "Change navbar color and flag according to AWS region", "version": "1.7.1", "manifest_version": 3, "icons": { "128": "icon.png" }, "permissions": [ "activeTab", "storage" ], "host_permissions": [ "*:\/\/*.console.aws.amazon.com\/*" ], "action": { "default_icon": { "128": "icon.png" }, "default_popup": "popup.html", "default_title": "AWS Colorful Navbar" }, "content_scripts": [ { "matches": [ "*:\/\/*.console.aws.amazon.com\/*" ], "js": [ "main.js" ] } ], "web_accessible_resources": [ { "resources": [ "flags\/*.png", "svcs\/*.svg", "svcs\/*.ico" ], "matches": [ "*:\/\/*.console.aws.amazon.com\/*" ] } ] } |