Installation

Cloud Palette is available on the Chrome Web Store for easy installation.

Install from Chrome Web Store

1
Visit the Chrome Web Store

Click the "Get from Chrome Web Store" button on our homepage or search for "Cloud Palette"

2
Click "Add to Chrome"

Review the permissions and click the blue "Add to Chrome" button

3
Confirm installation

Click "Add extension" in the popup dialog to confirm

4
Verify installation

You should see the extension icon ⚡ in your Chrome toolbar

✓ Success!

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:

  1. Press Cmd+K or Ctrl+K to open the command palette
  2. Type s3 buck to search for S3 Buckets
  3. Press Enter to navigate to the S3 Buckets page
  4. Press Esc to close the palette
💡 Tip

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:

  1. Navigate to chrome://extensions/shortcuts
  2. Find "AWS Console Command Palette"
  3. 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

s3
Shows all S3-related features (Buckets, Access Points)
lambda func
Shows Lambda Functions
iam role
Shows IAM Roles
ec2 inst
Shows EC2 Instances

Search Tips

  • Partial matches: Type part of a service name (e.g., lamb finds Lambda)
  • Multiple terms: Combine service + feature (e.g., s3 buck finds S3 Buckets)
  • Case insensitive: IAM and iam work 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
More services coming soon!

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:

  1. Open Chrome DevTools (F12) on any page
  2. Go to the Console tab
  3. 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:

  1. Navigate to chrome://extensions/shortcuts
  2. Find "AWS Console Command Palette"
  3. Ensure Cmd+K (or your preferred shortcut) is assigned
  4. Check for conflicts with other extensions

Command palette not appearing

Solution:

  1. Open Chrome DevTools (F12)
  2. Check the Console for "AWS Command Palette content script loaded"
  3. If missing, reload the extension at chrome://extensions/
  4. Try reloading the current page

Features not loading

Solution:

  1. Open Chrome DevTools Console
  2. Clear storage with the command shown in the Local Storage section
  3. Reload the page to reseed default features

Debugging

If you encounter issues, here's how to debug the extension:

Check Background Script

  1. Go to chrome://extensions/
  2. Find "AWS Console Command Palette"
  3. Click "service worker" link
  4. Check Console for "AWS Console Command Palette background script loaded"

Check Content Script

  1. Open any webpage
  2. Open Chrome DevTools (F12)
  3. Go to Console tab
  4. Check for "AWS Command Palette content script loaded"

Inspect Storage

  1. Open Chrome DevTools (F12)
  2. Go to Application → Storage → Local Storage
  3. Look for stored features under chrome-extension://...
Still having issues?

Contact our support team at [email protected]. Please include:

  • Chrome version
  • Extension version
  • Console error messages (if any)
  • Steps to reproduce