A browser extension that detects WordPress sites and puts admin shortcuts, hosting info, and developer tools in your toolbar. Chrome is the primary target; Safari is supported via a companion Xcode project.
WordPress’s admin bar is convenient — Edit Post, the jump-to-admin link, a few plugin add-ons — but it lives inside the website’s viewport. That gets in the way when you’re checking how a site behaves for a logged-out visitor, especially with sticky navigation, parallax, or designs that key off the full browser height (100vh layouts, raindrop scroll effects, anything immersive). The standard workaround, turning the admin bar off in your user profile, fixes the visual interference, but then quick access to wp-admin and content editing becomes a chore.
Plugins layer their own items onto the admin bar too. For most everyday work, Edit this page, jump to admin, and a handful of host or developer shortcuts cover 80-90% of what most site managers reach for. This extension moves those out of the viewport entirely and into the browser toolbar, leaving the admin bar available when needed, out of the way when it’s not.
A few extras follow naturally from sitting at the browser level instead of inside the site. It identifies whether the current webpage is powered by WordPress (and, where the signals allow, which managed host it’s on), provides a one-click log-in shortcut, and packages developer tools (mobile preview, cache bypass, cookies/site-data clear, block highlighter) that are genuinely cleaner as a browser overlay than as in-site UI.
v0.8.x — pre-1.0, in production use. The v1.0 milestone is initial official directory releases on the Chrome Web Store and Safari / Mac App Store under the WordPress publisher account; Firefox and Edge follow post-1.0. See ROADMAP.md for what’s locked, what’s open, and what’s next.
No telemetry, no analytics, no third-party tracking. The extension does its work locally — reading the page you’re on and (when you’re signed in as an admin) calling the site’s own REST API for theme and plugin information. Nothing leaves your browser for any service outside the WordPress site you’re already visiting.
chrome://extensions, enable Developer modeSee SAFARI.md — requires Xcode and a one-time Xcode Run (⌘R).
case-study. Keyboard shortcut: Alt+Shift+E (Option+Shift+E on Mac), customizable at chrome://extensions/shortcuts.wp-block-* elements with a breadcrumb tooltip), and a Query Monitor toggle when QM is installed.The popup UI is React + @wordpress/ui, bundled with 10up-toolkit. The background service worker, content scripts, and lib/*.js are plain JavaScript — no build step there.
npm install
npm run build # production bundle → dist/
npm start # watch mode
Run smoke tests for lib/ with cd test && npm install && npm test.
See CONTRIBUTING.md for the full contributor flow, conventions, and the permissions-discussion policy.
See ROADMAP.md — a working draft, not a fixed plan, open to community input. Current v1.0 target: official Chrome Web Store and Safari / Mac App Store releases under the WordPress publisher account, with API and permissions surface frozen. Firefox Add-ons and Edge Add-ons are tracked post-1.0.
Bug reports, design feedback, and PRs all welcome. This project follows the WordPress Code of Conduct.
CONTRIBUTING.md.SECURITY.md. Don’t open a public issue.See MAINTAINERS.md. Current maintainer set: @jakemgold (Jake Goldman) and @fabiankaegy (Fabian Kägy) — both at Fueled (formerly 10up).
MIT. Copyright the contributors. By submitting a contribution you license it under MIT.
This project began at jakemgold/wp-detective and moved here at v0.8 to become the official WordPress browser extension. The original repository is preserved as the project’s archived origin.