A lightweight Chrome extension that cleans AWS Console URLs by removing account-specific prefixes like 111222333344-xxxxxxx, making the URLs shareable and reusable across users and sessions.
- Cleans AWS Console URLs by stripping out account-specific fragments
- One-click button to clean and copy the current URL
- Manual input field for pasting AWS Console URLs
- Simple, clean UI
- Clone or download this repository
- Open Google Chrome and navigate to:
chrome://extensions - Enable Developer Mode (top-right toggle)
- Click "Load unpacked"
- Select the directory where you saved the extension files
- Visit any AWS Console page with an account-prefixed domain (e.g.
111222333344-xxxxxx.<my-fancy-region>.console.aws.amazon.com/...) - Click the extension icon in your toolbar
- Click "Clean & Copy URL" to clean the current tab’s URL
- Or paste a URL into the input field and "press Enter"
- The cleaned URL (without the account-specific part) will be copied to your clipboard
aws-url-ext/
├── manifest.json # Extension manifest file
├── code/
│ ├── popup.html # Popup UI HTML
│ ├── popup.js # Popup logic (JS)
│ ├── popup.css # Popup styles (CSS)
│ └── background.js # Background script
└── assets/
└── imgs/
└── icon.png # 128x128 extension icon
Input:
https://111222333344-xxxxxx.us-east-1.console.aws.amazon.com/s3/buckets/...?
Output:
https://console.aws.amazon.com/s3/buckets/...?
- Automatically clean the URL on page load
- Add keyboard shortcut
- Export/share cleaned links directly from popup
MIT License