Inspect and view changes in AWS role switch source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "0.10.0",
"name": "AWS role switch",
"description": "Quickly switch between roles on the AWS console",
"homepage_url": "https://github.com/janstuemmel/aws-role-switch",
"options_ui": {
"page": "options/options.html",
"browser_style": false,
"open_in_tab": true
},
"content_scripts": [
{
"matches": [
"https://*.console.aws.amazon.com/*",
"https://*.console.amazonaws-us-gov.com/*",
"https://*.console.amazonaws.cn/*",
"https://lightsail.aws.amazon.com/*",
"https://health.aws.amazon.com/*",
"https://phd.amazonaws-us-gov.com/*",
"https://phd.amazonaws.cn/*"
],
"js": [
"content/aws-console.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https://signin.aws.amazon.com/*"
],
"js": [
"content/aws-signin.js"
],
"run_at": "document_idle"
}
],
"manifest_version": 3,
"action": {
"default_title": "AWS role switch",
"default_popup": "popup/popup.html",
"browser_style": true,
"default_icon": {
"128": "assets/icon128.png"
}
},
"permissions": [
"storage",
"cookies"
],
"host_permissions": [
"https://*.console.aws.amazon.com/*",
"https://*.console.amazonaws-us-gov.com/*",
"https://*.console.amazonaws.cn/*",
"https://lightsail.aws.amazon.com/*",
"https://health.aws.amazon.com/*",
"https://phd.amazonaws-us-gov.com/*",
"https://phd.amazonaws.cn/*"
],
"commands": {
"_execute_action": {
"description": "Open the popup window",
"suggested_key": {
"default": "Ctrl+Shift+L"
}
}
},
"background": {
"service_worker": "background/background.js"
}
}