Check out the blog post — here.
A Windows 11 Command Palette extension (PowerToys) for Android developers. Exposes common ADB operations directly from the command palette.
- PowerToys with Command Palette enabled
- Android Platform Tools —
adb.exemust be in yourPATH - A connected Android device or running emulator
Install from the Microsoft Store - it works out of the box.
Download the .msixbundle from the latest GitHub Release. Before installing, you'll need to trust the self-signed certificate:
- Right-click the
.msixbundle→ Properties → Digital Signatures → select the cert → Details → View Certificate → Install Certificate - Store location: Local Machine → Trusted People
- Double-click the
.msixbundleto install
Will get around it soon™
Browse all installed packages on the connected device, filtered by status (foreground, running, debuggable). Select a package to act on it:
| Action | ADB equivalent |
|---|---|
| Launch | am start -n <launcher activity> |
| Restart | am force-stop + am start |
| Kill Process | am kill |
| Force Stop | am force-stop |
| Clear App Data | pm clear |
| Clear Data & Restart | pm clear + am start |
| Open Deep Link | am start -a android.intent.action.VIEW -d <url> |
| Grant All Permissions | pm grant <permission> for each declared permission |
| Revoke All Permissions | pm revoke <permission> for each declared permission |
| Uninstall | pm uninstall |
Install one or more APKs from a file picker.
Actions can be starred as favorites and will appear at the top of the list for that package.
Captures the screen and saves it to Pictures (or a custom folder configured in settings).
Enables/disables window, transition, and animator duration scales.
Shows/hides touch coordinate overlay.
Shows/hides layout bounds overlay.
Toggles airplane mode on/off.
Turns Wi-Fi on or off.
Turns mobile data on or off.
Fire an arbitrary deep link without targeting a specific package.
- Pull a specific shared pref file
- Dump app's database to desktop
- Set screen timeout
- Set font size / display size
- Change locale
- Pull latest screenshot to clipboard
- Record screen (start/stop)
- Send a broadcast intent
- Simulate low battery / charging state
- Trigger doze mode
- Fake a GPS location
- Sydney Sweeney



