css-noop-checker
by purupurupu·★ 25·Score 44
Chrome DevTools extension with MCP server for detecting CSS properties with no effect on elements.
Overview
CSS Noop Checker is both a Chrome DevTools extension and an MCP server that identifies CSS properties which have no visible effect on elements they're applied to. It provides detailed detection rules categorized by context (inline, block, container, etc.) and offers actionable warnings with explanations and fix suggestions. The MCP server implementation allows for AI-assisted analysis through Playwright.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this server when you need AI assistance to detect CSS properties that have no effect on elements, particularly when analyzing web pages or CSS code for optimization opportunities.
When NOT to choose this
Don't choose this if you need CSS validation against the official specifications rather than browser behavior, or if you're working with non-Chromium browsers.
Tools this server exposes
3 tools extracted from the READMElist_rulesList all available CSS noop detection rules
check_elementCheck selected element for CSS properties with no effect
scan_pageScan entire page for elements with ineffective CSS properties
Comparable tools
Installation
Install the Chrome Extension:
- Open
chrome://extensionsand enable Developer mode - Click **Load unpacked** and select the
dist/directory - Open DevTools on any page → **Elements** tab → **CSS Noop** sidebar pane
Install the MCP server:
{
"mcpServers": {
"css-noop-checker": {
"command": "npx",
"args": ["css-noop-checker"]
}
}
}FAQ
- What does CSS Noop Checker detect?
- It detects CSS properties that have no visible effect on elements they're applied to due to layout context, such as 'width' on an inline <span> or 'gap' on a non-flex/grid container.
- How does the MCP server functionality work?
- The MCP server exposes the CSS detection rules as tools that can be used by AI assistants for analyzing CSS code and providing suggestions through Playwright automation.
Compare css-noop-checker with
Last updated · Auto-generated from public README + GitHub signals.