Imagine telling your computer, “Build me a leave request app in Power Apps, connect it to Dataverse, and create an approval flow in Power Automate.” Then you step away to grab a coffee.
When you come back, it’s done.
That’s not a stretch anymore. In fact, that’s what Claude in Chrome does today — and if you work with Microsoft Power Platform, this changes everything about how fast you can deliver solutions.
The Shift Nobody Is Talking About Loudly Enough
Most conversations about AI and Power Platform focus on things like getting formula suggestions or asking Copilot to explain an error. Useful? Sure. Revolutionary? Not quite.
Claude in Chrome is different — not because it gives better answers, but because it acts. It moves your cursor. Buttons get clicked. Fields get filled in. Screens change, your work gets saved. In “Act Without Asking” mode, it executes an entire build sequence on its own while you sit back and watch.
Essentially, this is the difference between hiring a consultant who writes you a recommendation and hiring someone who actually sits down and does the work.
For citizen developers who’ve been learning Power Platform on the side, this is a genuine equaliser. Meanwhile, for IT professionals building serious solutions, it’s a multiplier you haven’t seen yet.
Let’s walk through exactly what this looks like in practice.
What Claude in Chrome Actually Is
Claude in Chrome is Anthropic’s browser agent — available as an extension on Chrome and Edge for Claude Pro ($20/month) and Max plan users. It lives in a side panel in your browser, and unlike a regular chat window, it can:
- See your entire screen — every button, form, field, and error message in your Power Platform environment
- Click — literally move the mouse and select things
- Type — fill in formula bars, connector fields, flow action settings
- Navigate — jump between Power Apps Studio, Power Automate, Dataverse, and other tabs
- Remember sequences — record a workflow once, and it will repeat it on demand or on a schedule
Specifically, there are two modes worth knowing. “Ask Before Acting” is the default — Claude explains each step before doing it, useful when you’re learning or want oversight. “Act Without Asking” is where it gets powerful — Claude executes the full task uninterrupted, ideal once you trust what it’s doing and need speed.
Importantly, both run directly against your logged-in Power Platform environment. No API keys, no setup beyond installing the extension.
Power Platform in 90 Seconds
If you already know Power Platform well, skip ahead. For everyone else, here’s the 30,000-foot view.
Power Platform is Microsoft’s low-code development suite, built on top of Dataverse as a shared data layer. The components most relevant to this discussion are Power Apps (build custom UIs), Power Automate (automate business processes), and Power Pages (external-facing websites). These tools are designed to be usable without traditional coding — but in practice, the more sophisticated your requirements, the more technical they become. That’s exactly the gap Claude fills so well.
Building Power Apps — Claude at the Controls
Here’s where things get concrete. Say you’re a citizen developer at a logistics company and you need to build a vehicle inspection form app that writes data to a Dataverse table. Normally you’d need a few hours, some YouTube tutorials, and a fair amount of trial-and-error with Power Fx formulas.
With Claude in Chrome, the process looks like this:
You open Power Apps Studio in your browser with Claude’s side panel active. You type: “Create a new canvas app with a form to capture vehicle ID, inspection date, inspector name, and inspection status. Connect it to a Dataverse table called Vehicle Inspections. Add a submit button that saves the record and shows a success message.”
Claude gets to work. It navigates to the correct screen, creates the controls, configures the data source connection, writes the SubmitForm() logic, adds the notification banner, and adjusts the layout — all by moving through the actual Power Apps Studio interface just like a human developer would. You can watch every action happen in real time.
Where Claude makes a visible difference here:
In practice, Power Fx formulas are the most common sticking point for citizen developers. Delegation issues, LookUp() vs Filter() decisions, conditional visibility with nested If() — these are the things that cause people to abandon their app mid-build and raise a ticket to IT.
Crucially, Claude doesn’t explain what to type. It types it. And if an error appears in the formula bar, it reads the error, identifies the root cause, and corrects it without you needing to say anything.
For IT professionals building model-driven apps with complex JavaScript client-side logic or PCF (Power Apps Component Framework) components, Claude can write those too — and navigate the solution explorer, publish customisations, and manage the component configuration entirely from within the browser.
Writing Power Automate Flows — The Full Build
Power Automate expressions are notorious. The combination of triggerBody(), formatDateTime(), outputs(), and nested dynamic content selectors is intuitive to almost nobody on first contact.
Fortunately, Claude handles the complete lifecycle of flow development:
Designing the flow architecture. Tell Claude your business requirement in plain language — “When a new record is added to the Vendor Invoices table in Dataverse, send an approval to the finance manager, and if approved, update the invoice status and notify the vendor by email.” Claude will map out the trigger, conditions, actions, and parallel branches before touching anything.
Building the flow. In “Act Without Asking” mode, Claude opens Power Automate, creates a new cloud flow, selects the right trigger, adds each action in sequence, fills in the connector configuration (SharePoint, Outlook, Teams — whatever you’re using), and writes the expressions exactly where they need to go. A flow that might take a competent developer 2-3 hours to build gets assembled in minutes.
Writing expressions you’d never figure out alone. Need to extract a specific field from a JSON payload inside a loop? Parse a date coming from a third-party connector in a non-standard format? Concatenate dynamic content with conditionally-included fields? These are exactly the kinds of things that cause developers to spend an afternoon in documentation. Claude writes them accurately and places them directly into the flow action — no copy-paste required.
Debugging errors inline. Power Automate’s run history is useful but can be cryptic. Claude can read the failed run details directly from your screen, trace the issue to the specific action, and correct the logic — all without you needing to interpret the JSON output yourself.
Designing Dataverse Tables — Data Modelling Made Accessible
Above all, getting your Dataverse data model right is foundational. A poorly designed schema is painful to fix six months into a project.
Claude can approach Dataverse table design two ways:
From a conversation. Describe your business process. Claude designs the table schema — columns, data types, relationships, choice field options — and then navigates to the Dataverse table editor and creates everything. Column by column. It selects the right data types (Lookup vs Text vs Choice), sets the required/optional flags, configures relationships between tables, and saves each one.
From an existing document. Alternatively, if you already have requirements in a spreadsheet or a process diagram, Claude reads it, maps it to a Dataverse schema, and builds it. This is especially valuable for IT professionals managing delivery against business requirements documents.
For more advanced scenarios — business rules, calculated columns, rollup fields, plug-in registration — Claude knows the Power Platform data platform in depth (per Microsoft Learn’s Dataverse developer documentation) and can handle these through the maker portal or the Power Platform CLI, depending on your workflow.
Real Use Case: An 800-Person Retailer and Their Expense Management Mess
Let me give you something tangible.
A mid-sized retail chain with roughly 800 employees had a broken expense management process. Staff submitted expense claims via email, attachments went to a shared inbox, finance manually keyed them into an ERP system, and approvals were done by forwarding emails. Claims routinely got lost. The average processing time was 11 days.
At the time, their IT team had one Power Platform developer. They also had two “citizen developers” — an operations coordinator and an HR manager — who had both completed a few hours of Power Apps training but had never shipped a production solution.
The task: Build a canvas app for expense submission, a Dataverse-backed data store, and an automated approval-and-payment-notification flow. Estimated delivery the traditional way: 10–12 weeks.
Breaking Down the Build
Here’s how they used Claude in Chrome:
The IT developer used “Act Without Asking” mode to build the Dataverse schema in under 2 hours — 6 tables, 40+ columns, 4 relationships. Specifically, Claude navigated the table editor, created each table, configured all the columns, and established the lookup relationships without a single manual click from the developer.
The two citizen developers took the canvas app build. Initially, neither of them had ever written a Power Fx formula from scratch. They described each screen they needed to Claude in plain language. As a result, Claude built the screens, wrote the form submission logic, handled the gallery filtering for expense history, and configured the role-based visibility rules so staff only saw their own records. When a delegation warning appeared, Claude caught it before they did, rewrote the formula, and explained why — in plain English — so they actually understood it for next time.
However, the approval flow was the most complex piece. It needed multi-stage approvals (line manager, then finance above a threshold), Teams notifications with adaptive cards, automatic ERP update via HTTP action, and email confirmation to the submitter at each stage. The IT developer described the logic. Claude built the full 28-action flow in Power Automate, including the conditional branching, all expressions, and the HTTP payload for the ERP API call.
Total delivery time: 3 weeks. Not 10-12. Three.
Moreover, processing time dropped from 11 days to same-day for straightforward claims. The citizen developers now maintain the app themselves — because they learned enough through watching Claude work to understand what they’re looking at.
A Few Practical Things to Know Before You Start
Install and setup is minimal. Go to claude.com/chrome, install the extension on Chrome or Edge, open your Power Platform maker environment, and start the side panel. You’re already signed into your tenant — Claude works with that session.
Be specific with what you ask for. In general, the more context you give upfront, the better the output. Instead of “build me a flow,” say “build me a cloud flow in Power Automate triggered by a new SharePoint list item in the HR Requests list, that sends an approval email to the person’s line manager and updates the SharePoint item status based on the response.” Claude will do exactly that.
Use “Ask Before Acting” when you’re learning something new. Additionally, watching Claude build step-by-step is one of the fastest ways to genuinely understand Power Platform. When you’re comfortable, switch to “Act Without Asking” to maximise speed.
Record your repetitive workflows. If you find yourself doing the same build task repeatedly — creating a new table with a standard structure, setting up a specific connector configuration — record it once. As a result, Claude turns your recording into a reusable shortcut that can be triggered on demand or scheduled.
You’re still the decision-maker. That said, Claude works fast, but it’s worth reviewing what it’s built before deploying to production — especially for flows that send emails, modify records, or touch external systems. Governance matters, and a two-minute review is all it takes.
This Is Not a Feature. It’s a Paradigm Shift.
There’s a version of this technology that just helps people write better prompts or auto-generates a formula here and there. That’s not what we’re talking about.
In reality, what Claude in Chrome represents for Power Platform is the closing of the gap between knowing what you want and being able to build it. A citizen developer who could previously build simple list-connected apps can now deliver production-grade multi-table solutions. An IT developer who normally juggles 6 projects at once can deliver 3x faster on each one.
After all, the Power Platform was always supposed to democratise application development inside organisations. Claude just made that promise real.
If you work with Power Platform and haven’t tried this yet, the barrier to entry is genuinely low — a browser extension and a Pro subscription. Indeed, the ceiling on what you can build is very, very high.
Give it a week. You won’t go back.
Questions about getting started or a specific Power Platform use case you’d like explored? Drop it in the comments. Always happy to dig in.
Discover more from Power Solution
Subscribe to get the latest posts sent to your email.
