Files
gh-anthemflynn-ccmp-plugins…/commands/browser-eval.md
2025-11-29 17:55:23 +08:00

798 B

description, allowed-tools, argument-hint, model
description allowed-tools argument-hint model
Execute JavaScript in the browser's page context. Great for inspecting DOM, computed styles, or testing fixes. Bash(*) <javascript expression> haiku

Evaluate JavaScript

Execute JavaScript in the active browser tab's page context.

node ~/.claude/plugins/*/skills/website-debug/scripts/browser-eval.js '$ARGUMENTS'

Common Uses

Get element info:

document.querySelector(".selector")

Check computed styles:

getComputedStyle(document.querySelector(".btn")).backgroundColor

Count elements:

document.querySelectorAll("a").length

Get bounding rect:

document.querySelector(".header").getBoundingClientRect()

Return the result to the user and explain what it means in context.