Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
pproenca avatar

Chrome Extension Ui

  • 615 installs
  • 186 repo stars
  • Updated July 24, 2026
  • pproenca/dot-skills

chrome-extension-ui is a frontend skill that generates and maintains Chrome extension interfaces following Manifest V3 UX rules so developers pass Chrome Web Store review.

About

chrome-extension-ui is a Manifest V3 UX/UI guide skill at version 0.1.0 from the Chrome Extensions Community, containing 42 rules across 8 categories prioritized from critical component selection and accessibility down to icons and branding. Agents follow incorrect-versus-correct examples when generating, refactoring, or reviewing popup, options page, and side-panel code for Chrome extensions. Developers reach for chrome-extension-ui when an extension must look credible, meet accessibility expectations, and avoid store rejection patterns during AI-assisted builds. The guidance is optimized for automated maintenance workflows while remaining useful for human reviewers auditing extension UI before publish.

  • 42 rules across 8 categories prioritized from critical to incremental
  • Focuses on side panel usage, single-purpose design, minimal permissions, content scripts, and accessibility
  • Includes before-and-after implementation examples with quantified impact metrics
  • Optimized for AI agents generating or refactoring extension UI code
  • Critical rules improve engagement 5-10× and install conversion 40-60%

Chrome Extension Ui by the numbers

  • 615 all-time installs (skills.sh)
  • Ranked #526 of 1,888 Design & UI/UX skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Jul 31, 2026 (Skillselion catalog sync)
npx skills add https://github.com/pproenca/dot-skills --skill chrome-extension-ui

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs615
repo stars186
Security audit2 / 3 scanners passed
Last updatedJuly 24, 2026
Repositorypproenca/dot-skills

How do you build Manifest V3 extension UI for store review?

Generate and maintain Chrome extension interfaces that follow Manifest V3 best practices and pass Chrome Web Store review.

Who is it for?

Frontend developers shipping or refactoring Chrome extensions who want agent-guided UI that aligns with Manifest V3 and Web Store policies.

Skip if: Teams building Safari or Firefox add-ons, backend-only browser automation, or extensions with no user-facing surfaces.

When should I use this skill?

The task involves creating, refactoring, or reviewing Chrome extension popup, options, side panel, or icon UI under Manifest V3.

What you get

Manifest V3-compliant popup, options, and side-panel UI with accessibility fixes and store-review-safe component patterns.

  • popup UI markup
  • options page layout
  • accessibility-compliant components

By the numbers

  • Contains 42 rules across 8 categories at version 0.1.0

Files

SKILL.mdMarkdownGitHub ↗

Chrome Extensions UX/UI Best Practices

Comprehensive UX/UI design guide for Chrome Extensions, optimized for Manifest V3. Contains 42 rules across 8 categories, prioritized by impact to guide extension UI development and code review.

When to Apply

Reference these guidelines when:

  • Building new Chrome extension user interfaces
  • Choosing between popup, side panel, or content script UI
  • Implementing accessible, keyboard-navigable interfaces
  • Designing loading states, error handling, and feedback patterns
  • Creating options pages and settings persistence

Rule Categories by Priority

PriorityCategoryImpactPrefix
1Component SelectionCRITICALcomp-
2Accessibility & NavigationCRITICALaccess-
3Popup DesignHIGHpopup-
4Side Panel UXHIGHpanel-
5Content Script UIMEDIUM-HIGHinject-
6Visual FeedbackMEDIUMfeedback-
7Options & SettingsMEDIUMoptions-
8Icons & BrandingLOW-MEDIUMbrand-

Quick Reference

1. Component Selection (CRITICAL)

  • `comp-popup-vs-sidepanel` - Choose Side Panel for Persistent Tasks
  • `comp-content-script-ui` - Use Content Scripts for In-Page UI
  • `comp-single-purpose` - Design for Single Purpose
  • `comp-minimal-permissions` - Request Minimal Permissions
  • `comp-action-tooltip` - Provide Descriptive Action Tooltips

2. Accessibility & Navigation (CRITICAL)

  • `access-keyboard-navigation` - Enable Complete Keyboard Navigation
  • `access-focus-visible` - Maintain Visible Focus Indicators
  • `access-aria-labels` - Use ARIA Labels for Icon-Only Buttons
  • `access-color-contrast` - Ensure Sufficient Color Contrast
  • `access-focus-trap` - Avoid Keyboard Focus Traps
  • `access-semantic-html` - Use Semantic HTML Elements

3. Popup Design (HIGH)

  • `popup-size-constraints` - Design Within Popup Size Limits
  • `popup-instant-render` - Render Popup Content Instantly
  • `popup-primary-action` - Make the Primary Action Obvious
  • `popup-auto-close` - Handle Popup Auto-Close Gracefully
  • `popup-external-js` - Keep JavaScript in External Files
  • `popup-dynamic-switch` - Use Dynamic Popups for State-Based UI

4. Side Panel UX (HIGH)

  • `panel-non-distracting` - Design Non-Distracting Side Panels
  • `panel-tab-vs-window` - Choose Tab-Specific vs Window-Wide Panels
  • `panel-responsive-width` - Design for Variable Panel Widths
  • `panel-page-context` - Sync Panel Content with Page Context
  • `panel-lazy-sections` - Lazy Load Panel Sections

5. Content Script UI (MEDIUM-HIGH)

  • `inject-shadow-dom` - Use Shadow DOM for Style Isolation
  • `inject-z-index` - Use Maximum Z-Index for Overlays
  • `inject-document-ready` - Inject UI After DOM Ready
  • `inject-unique-ids` - Use Unique IDs to Prevent Conflicts
  • `inject-cleanup` - Clean Up Injected Elements on Removal

6. Visual Feedback (MEDIUM)

  • `feedback-loading-states` - Show Loading States for Async Operations
  • `feedback-error-messages` - Write Actionable Error Messages
  • `feedback-badge-status` - Use Badge for At-a-Glance Status
  • `feedback-success-confirmation` - Confirm Successful Actions
  • `feedback-notifications` - Use Notifications Sparingly
  • `feedback-progress-indication` - Show Progress for Long Operations

7. Options & Settings (MEDIUM)

  • `options-embedded-page` - Use Embedded Options for Simple Settings
  • `options-sync-storage` - Sync Settings Across Devices
  • `options-auto-save` - Auto-Save Settings on Change
  • `options-sensible-defaults` - Provide Sensible Default Settings

8. Icons & Branding (LOW-MEDIUM)

  • `brand-icon-sizes` - Provide All Required Icon Sizes
  • `brand-distinctive-icon` - Design a Distinctive Toolbar Icon
  • `brand-badge-text` - Keep Badge Text Under 4 Characters
  • `brand-consistent-styling` - Maintain Consistent Visual Style
  • `brand-web-store-assets` - Create Quality Web Store Assets

How to Use

Read individual reference files for detailed explanations and code examples:

  • Section definitions - Category structure and impact levels
  • Rule template - Template for adding new rules

Reference Files

FileDescription
references/_sections.mdCategory definitions and ordering
assets/templates/_template.mdTemplate for new rules
metadata.jsonVersion and reference information

Related skills

How it compares

Use chrome-extension-ui for store-facing extension surfaces; pair with general frontend-design skills for marketing sites outside the extension shell.

FAQ

How many UI rules does chrome-extension-ui include?

chrome-extension-ui bundles 42 UX/UI rules organized into 8 categories for Manifest V3 Chrome extensions. Rules span component selection, accessibility, layout patterns, and incremental branding guidance.

Does chrome-extension-ui target Manifest V3?

chrome-extension-ui is optimized specifically for Manifest V3 Chrome extensions at version 0.1.0. Agents apply its rules when generating or refactoring popup, options, and side-panel interfaces for store submission.

Is Chrome Extension Ui safe to install?

skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.