Installation
Cloud Palette is available on the Chrome Web Store for easy installation.
Install from Chrome Web Store
Click the "Get from Chrome Web Store" button on our homepage or search for "Cloud Palette"
Review the permissions and click the blue "Add to Chrome" button
Click "Add extension" in the popup dialog to confirm
You should see the extension icon ⚡ in your Chrome toolbar
The extension is now installed. Press Cmd+K (Mac) or Ctrl+K (Windows/Linux) on any webpage to open the command palette.
Quick Start
Get started with AWS Console Command Palette in 30 seconds:
- Press Cmd+K or Ctrl+K to open the command palette
- Type
s3 buckto search for S3 Buckets - Press Enter to navigate to the S3 Buckets page
- Press Esc to close the palette
The command palette works on any webpage, not just AWS Console. You can quickly jump to AWS features from anywhere!
Keyboard Shortcuts
AWS Console Command Palette is designed to be used entirely with your keyboard.
| Shortcut | Action |
|---|---|
| Cmd+K or Ctrl+K | Toggle command palette |
| ↑ ↓ | Navigate up/down in results |
| ← → | Switch between Features and Resources columns |
| Enter | Open selected item |
| Esc | Close command palette |
Customizing Keyboard Shortcuts
If Cmd+K conflicts with another extension:
- Navigate to
chrome://extensions/shortcuts - Find "AWS Console Command Palette"
- Click the edit icon and set your preferred shortcut
Searching
The command palette uses fuzzy search to help you find AWS features quickly.
Search Examples
s3lambda funciam roleec2 instSearch Tips
-
Partial matches: Type part of a service name
(e.g.,
lambfinds Lambda) -
Multiple terms: Combine service + feature
(e.g.,
s3 buckfinds S3 Buckets) -
Case insensitive:
IAMandiamwork the same
Supported AWS Services
AWS Console Command Palette currently includes 100+ features across these services:
Amazon S3
- Buckets
- Access Points
IAM
- Users
- Roles
- Policies
- Groups
Lambda
- Functions
- Layers
EC2
- Instances
- Volumes
- Security Groups
DynamoDB
- Tables
CloudWatch
- Dashboards
- Log Groups
RDS
- Databases
CloudFormation
- Stacks
We're actively adding support for more AWS services. Updates are released regularly.
Local Storage
All data is stored locally using Chrome's storage API
(chrome.storage.local).
What's Stored?
- Features index: Pre-loaded list of AWS Console features
- Resources (future): Your AWS resources discovered from browsing AWS Console
Privacy
- ✓ No data sent to external servers
- ✓ No AWS API calls
- ✓ No tracking or analytics
- ✓ All data stays on your machine
Clear Storage
To reset the extension and clear all stored data:
- Open Chrome DevTools (F12) on any page
- Go to the Console tab
- Run this command:
chrome.storage.local.clear(() => {
console.log('Storage cleared - reload page to reseed');
});
Reload the page, and the extension will reseed the default features.
Common Issues
Keyboard shortcut not working
Solution:
- Navigate to
chrome://extensions/shortcuts - Find "AWS Console Command Palette"
- Ensure Cmd+K (or your preferred shortcut) is assigned
- Check for conflicts with other extensions
Command palette not appearing
Solution:
- Open Chrome DevTools (F12)
- Check the Console for "AWS Command Palette content script loaded"
-
If missing, reload the extension at
chrome://extensions/ - Try reloading the current page
Features not loading
Solution:
- Open Chrome DevTools Console
- Clear storage with the command shown in the Local Storage section
- Reload the page to reseed default features
Debugging
If you encounter issues, here's how to debug the extension:
Check Background Script
- Go to
chrome://extensions/ - Find "AWS Console Command Palette"
- Click "service worker" link
- Check Console for "AWS Console Command Palette background script loaded"
Check Content Script
- Open any webpage
- Open Chrome DevTools (F12)
- Go to Console tab
- Check for "AWS Command Palette content script loaded"
Inspect Storage
- Open Chrome DevTools (F12)
- Go to Application → Storage → Local Storage
-
Look for stored features under
chrome-extension://...
Contact our support team at [email protected]. Please include:
- Chrome version
- Extension version
- Console error messages (if any)
- Steps to reproduce