Inspect and view changes in AWS Account Identifier 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
{
"name": "AWS Account Identifier",
"version": "1.0.2",
"description": "Adds a description with a specific color to the AWS's navigation bar depending on the account you are connected to.",
"manifest_version": 3,
"action": {
"default_title": "Options",
"default_popup": "popup.html"
},
"icons": {
"128": "icon.png"
},
"permissions": [
"storage"
],
"host_permissions": [
"*://*.console.aws.amazon.com/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*://*.console.aws.amazon.com/*"
],
"js": [
"main.js"
]
},
{
"matches": [
"*://*.awsapps.com/start#/",
"*://*.awsapps.com/start/*"
],
"js": [
"main-sso.js"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}