Color codes your AWS header based on what account you are logged into.
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",
"manifest_version": 3,
"name": "AWS Colorize",
"version": "0.2.1",
"description": "Color codes your AWS header based on what account you are logged into.",
"content_scripts": [
{
"matches": [
"*://*.console.aws.amazon.com/*"
],
"js": [
"./src/content.js"
]
}
],
"icons": {
"16": "./src/icons/aws-colorize-logo.png"
},
"action": {
"default_icon": {
"32": "./src/icons/aws-colorize-logo.png"
},
"default_title": "AWS Colorize",
"default_popup": "./src/popup/index.html"
},
"background": {
"service_worker": "./src/background.js",
"type": "module"
},
"permissions": [
"storage"
]
}