Inspect and view changes in Display AWS Account Name 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": "Display AWS Account Name",
"version": "1.0.5",
"manifest_version": 3,
"description": "AWSマネージメントコンソールのフッターに任意のアカウント名が表示できます。マルチアカウントをされる方におすすめです。Display any AWS account name to the footer of the AWS Management Console.",
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https://*.console.aws.amazon.com/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
]
}
],
"options_page": "index.html",
"icons": {
"16": "icons/aws16.png",
"32": "icons/aws32.png",
"48": "icons/aws48.png",
"128": "icons/aws128.png"
}
}