Automatically redirects you back to the previously visited AWS Console page after re-login.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "AWS Auto-Redirect",
"version": "1.0",
"description": "Redirect back to the last visited AWS page after re-login.",
"permissions": [
"tabs",
"storage",
"activeTab",
"webNavigation"
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"*://*.aws.amazon.com/*"
]
}
],
"browser_action": {
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{6ccfa5da-4f6a-4ead-b8fb-be6493285514}"
}
}
}