AWS Console Navigation Sidebar for Chrome
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": 2,
"permissions": [
"storage"
],
"sandbox": {
"pages": [
"iframe/sandbox.html"
]
},
"content_scripts": [
{
"css": [
"aws-sidebar.css"
],
"js": [
"iframe/bootstrap/jquery-3.2.1.min.js",
"settings_manager.js",
"content.js"
],
"matches": [
"*://aws.amazon.com/*",
"*://*.aws.amazon.com/*"
]
}
],
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"web_accessible_resources": [
"images/*",
"iframe/*",
"iframe/bootstrap/*"
],
"icons": {
"48": "images/icon-48.png",
"128": "images/icon-128.png"
},
"description": "AWS Console Navigation Sidebar for Chrome",
"name": "AWS Sidebar",
"version": "1.0.6"
}