Inspect and view changes in AWS SSO Account Highlight 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",
"name": "AWS SSO Account Highlight",
"description": "Display a badge of current AWS Account Name",
"version": "1.0",
"manifest_version": 3,
"permissions": [
"storage"
],
"background": {
"service_worker": "init.js"
},
"content_scripts": [
{
"matches": [
"https://*.console.aws.amazon.com/*"
],
"js": [
"aws-sso-account-highlight.js"
]
}
],
"options_page": "options.html",
"icons": {
"128": "/img/icon.png"
}
}