AWS SSO Extender
Organize access to the AWS console & other AWS SSO (Identity Center) applications
AWS SSO Extender क्या है?
AWS SSO Extender https://wtfender.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Organize access to the AWS console & other AWS SSO (Identity Center) applications"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में AWS SSO Extender एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
⭐ Quickly access your Favorite AWS SSO apps 🎨 Customize your profiles, roles & AWS console 🔑 Assume IAM roles from your SSO profiles
एक्सटेंशन की मूल जानकारी
नाम | AWS SSO Extender |
ID | pojoaiboolahdaedebpjgnllehpofkep |
आधिकारिक URL | https://chromewebstore.google.com/detail/aws-sso-extender/pojoaiboolahdaedebpjgnllehpofkep |
विवरण | Organize access to the AWS console & other AWS SSO (Identity Center) applications |
फ़ाइल का आकार | 794 KB |
स्थापना संख्या | 1,051 |
वर्तमान संस्करण | 1.8.5 |
अंतिम अपडेट | 2024-03-01 |
प्रकाशन तिथि | 2023-02-14 |
रेटिंग | 5.00/5 कुल 5 रेटिंग्स |
डेवलपर | https://wtfender.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/WTFender/aws-sso-extender |
सहायता पृष्ठ URL | https://github.com/WTFender/aws-sso-extender/issues |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "AWS SSO Extender", "description": "Organize access to the AWS console & other AWS SSO (Identity Center) applications", "version": "1.8.5", "author": "WTFender", "homepage_url": "https:\/\/github.com\/WTFender\/aws-sso-extender", "manifest_version": 3, "icons": { "16": "icons\/red\/16.png", "32": "icons\/red\/32.png", "128": "icons\/red\/128.png" }, "options_ui": { "open_in_tab": true, "page": "src\/options.html" }, "action": { "default_popup": "src\/popup.html" }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+F", "mac": "MacCtrl+Shift+F" } }, "openProfile1": { "suggested_key": { "default": "Ctrl+Shift+1", "mac": "MacCtrl+Shift+1" }, "description": "Open Profile #1" }, "openProfile2": { "suggested_key": { "default": "Ctrl+Shift+2", "mac": "MacCtrl+Shift+2" }, "description": "Open Profile #2" }, "openProfile3": { "suggested_key": { "default": "Ctrl+Shift+3", "mac": "MacCtrl+Shift+3" }, "description": "Open Profile #3" } }, "background": { "service_worker": "src\/entry\/background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/*.awsapps.com\/start*" ], "js": [ "src\/entry\/aws-sso.js" ] }, { "matches": [ "https:\/\/*.console.aws.amazon.com\/*" ], "js": [ "src\/entry\/aws-console.js" ] }, { "matches": [ "https:\/\/signin.aws.amazon.com\/switchrole?*" ], "js": [ "src\/entry\/aws-switchrole.js" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'none'; worker-src 'none'; img-src 'self' data: https:\/\/static.global.sso.amazonaws.com\/" }, "cross_origin_opener_policy": { "value": "same-origin" }, "permissions": [ "storage" ], "optional_permissions": [ "history" ] } |