chrome-extension▌
pproenca/dot-skills · updated Jun 4, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
Comprehensive performance and code quality guide for Chrome Extensions (Manifest V3). Contains 67 rules across 12 categories, prioritized by impact to guide automated refactoring and code generation.
Chrome Extension Best Practices
Comprehensive performance and code quality guide for Chrome Extensions (Manifest V3). Contains 67 rules across 12 categories, prioritized by impact to guide automated refactoring and code generation.
When to Apply
Reference these guidelines when:
- Writing new Chrome extension code
- Migrating from Manifest V2 to Manifest V3
- Optimizing service worker lifecycle and state management
- Implementing content scripts for page interaction
- Debugging performance issues in extensions
Rule Categories by Priority
| Priority | Category | Impact | Prefix |
|---|---|---|---|
| 1 | Service Worker Lifecycle | CRITICAL | sw- |
| 2 | Content Script Optimization | CRITICAL | content- |
| 3 | Message Passing Efficiency | HIGH | msg- |
| 4 | Storage Operations | HIGH | storage- |
| 5 | Network & Permissions | MEDIUM-HIGH | net- |
| 6 | Memory Management | MEDIUM | mem- |
| 7 | UI Performance | MEDIUM | ui- |
| 8 | API Usage Patterns | LOW-MEDIUM | api- |
| 9 | Code Style & Naming | MEDIUM | style- |
| 10 | Component Patterns | MEDIUM | comp- |
| 11 | Error Handling | HIGH | err- |
| 12 | Testing Patterns | MEDIUM | test- |
Quick Reference
1. Service Worker Lifecycle (CRITICAL)
sw-persist-state-storage- Persist state with chrome.storage instead of global variablessw-avoid-keepalive- Avoid artificial service worker keep-alive patternssw-use-alarms-api- Use chrome.alarms instead of setTimeout/setIntervalsw-return-true-async- Return true from message listeners for async responsessw-register-listeners-toplevel- Register event listeners at top levelsw-use-offscreen-for-dom- Use offscreen documents for DOM APIs
2. Content Script Optimization (CRITICAL)
content-use-specific-matches- Use specific URL match patternscontent-use-document-idle- Use document_idle for content script injectioncontent-programmatic-injection- Prefer programmatic injection over manifest declarationcontent-minimize-script-size- Minimize content script bundle sizecontent-batch-dom-operations- Batch DOM operations to minimize reflowscontent-use-mutation-observer- Use MutationObserver instead of polling
3. Message Passing Efficiency (HIGH)
msg-use-ports-for-frequent- Use port connections for frequent message exchangemsg-minimize-payload-size- Minimize message payload sizemsg-debounce-frequent-events- Debounce high-frequency events before messagingmsg-check-lasterror- Always check chrome.runtime.lastErrormsg-avoid-broadcast-to-all-tabs- Avoid broadcasting messages to all tabs
4. Storage Operations (HIGH)
storage-batch-operations- Batch storage operations instead of individual callsstorage-choose-correct-type- Choose the correct storage type for your use casestorage-cache-frequently-accessed- Cache frequently accessed storage valuesstorage-use-session-for-temp- Use storage.session for temporary runtime datastorage-avoid-storing-large-blobs- Avoid storing large binary blobs
5. Network & Permissions (MEDIUM-HIGH)
net-use-declarativenetrequest- Use declarativeNetRequest instead of webRequestnet-request-minimal-permissions- Request minimal required permissionsnet-use-activetab- Use activeTab permission instead of broad host permissionsnet-limit-csp-modifications- Avoid modifying Content Security Policy headers
6. Memory Management (MEDIUM)
mem-cleanup-event-listeners- Clean up event listeners when content script unloadsmem-avoid-detached-dom- Avoid holding references to detached DOM nodesmem-avoid-closure-leaks- Avoid accidental closure memory leaksmem-clear-intervals-timeouts- Clear intervals and timeouts on cleanupmem-use-weak-collections- Use WeakMap and WeakSet for DOM element references
7. UI Performance (MEDIUM)
ui-minimize-popup-bundle- Minimize popup bundle size for fast startupui-render-with-cached-data- Render popup UI with cached data firstui-batch-badge-updates- Batch badge updates to avoid flickerui-use-options-page-lazy- Lazy load options page sections
8. API Usage Patterns (LOW-MEDIUM)
api-use-promises-over-callbacks- Use promise-based API calls over callbacksapi-query-tabs-efficiently- Query tabs with specific filtersapi-avoid-redundant-api-calls- Avoid redundant API calls in loopsapi-use-alarms-minperiod- Respect alarms API minimum periodapi-handle-context-invalidated- Handle extension context invalidated errorsapi-use-declarative-content- Use declarative content API for page actions
9. Code Style & Naming (MEDIUM)
style-boolean-naming- Use is/has/should prefixes for boolean variablesstyle-cache-naming- Use consistent cache variable namingstyle-constants- Define constants for magic valuesstyle-directory-structure- Organize code by feature/layerstyle-file-naming- Use consistent file naming conventionsstyle-function-naming- Use descriptive function namesstyle-import-type- Use type-only imports for typesstyle-index-entry-points- Use index files for module entry pointsstyle-message-enums- Use enums for message typesstyle-type-naming- Use PascalCase for types and interfaces
10. Component Patterns (MEDIUM)
comp-adapter-interface- Use adapter pattern for browser APIscomp-content-script-structure- Structure content scripts consistentlycomp-css-class-patterns- Use BEM or prefixed CSS classescomp-manager-class- Use manager classes for complex statecomp-type-guards- Use type guards for runtime validationcomp-ui-components- Create reusable UI components
11. Error Handling (HIGH)
err-context-invalidation- Handle extension context invalidationerr-early-return- Use early returns for error handlingerr-null-coalescing- Use nullish coalescing for defaultserr-promise-barrier- Use promise barriers for coordinationerr-storage-operations- Handle storage operation failureserr-url-parsing- Safely parse URLs with try/catcherr-validation-pattern- Validate inputs at boundaries
12. Testing Patterns (MEDIUM)
test-browser-api-mocking- Mock chrome APIs in teststest-organization- Organize tests by featuretest-validation-functions- Test validation functions thoroughly
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
Full Compiled Document
For a complete guide with all rules in a single document, see AGENTS.md.
Reference Files
| File | Description |
|---|---|
| AGENTS.md | Complete compiled guide with all rules |
| references/_sections.md | Category definitions and ordering |
| assets/templates/_template.md | Template for new rules |
| metadata.json | Version and reference information |
How to use chrome-extension on Cursor
AI-first code editor with Composer
Prerequisites
Before installing skills in Cursor, ensure your development environment meets these requirements:
- ›Cursor installed and configured on your development machine
- ›Node.js version 16.0+ with npm package manager (verify with
node --version) - ›Active project directory or workspace where you want to add chrome-extension
Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
The skills CLI fetches chrome-extension from GitHub repository pproenca/dot-skills and configures it for Cursor.
Select Cursor when prompted
The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:
Verify installation
Confirm successful installation by checking the skill directory location:
Reload or restart Cursor to activate chrome-extension. Access the skill through slash commands (e.g., /chrome-extension) or your agent's skill management interface.
Security & Verification Notice
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.
List & Monetize Your Skill
Submit your Claude Code skill and start earning
Use Cases▌
User Story & Requirements Generation
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Competitive Analysis
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Roadmap Prioritization
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
Make data-driven prioritization decisions faster
Stakeholder Communication
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Implementation Guide▌
Prerequisites
- ›Claude Desktop or compatible AI client
- ›Access to product documentation and roadmap tools (Jira, Notion, etc.)
- ›Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
- ›Stakeholder contact information and communication channels
Time Estimate
30-60 minutes to see productivity improvements
Installation Steps
- 1.Install product management skill
- 2.Start with user story generation for known feature
- 3.Progress to competitive analysis: research 2-3 competitors
- 4.Use for roadmap prioritization: apply RICE/ICE scoring
- 5.Draft stakeholder communications and refine based on feedback
- 6.Build template library for recurring PM tasks
- 7.Share effective prompts with product team
Common Pitfalls
- ⚠Not validating competitive research—verify facts before sharing
- ⚠Accepting user stories without involving engineering team
- ⚠Over-relying on frameworks without qualitative judgment
- ⚠Not customizing outputs to company culture and communication style
- ⚠Skipping stakeholder validation of generated requirements
Best Practices▌
✓ Do
- +Validate research and competitive analysis with real data
- +Collaborate with engineering when generating technical requirements
- +Customize frameworks and templates to your company context
- +Use skill for first drafts, refine with stakeholder input
- +Document successful prompt patterns for PM tasks
- +Combine AI efficiency with human judgment and intuition
✗ Don't
- −Don't publish competitive analysis without fact-checking
- −Don't finalize user stories without engineering review
- −Don't make prioritization decisions solely on AI scoring
- −Don't skip customer validation of generated requirements
- −Don't ignore company-specific context and culture
💡 Pro Tips
- ★Provide context: company goals, constraints, customer feedback
- ★Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
- ★Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
- ★Use skill for 70% generation + 30% customization to company needs
When to Use This▌
✓ Use When
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid When
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
Learning Path▌
- 1Basic: user stories, feature specs, status updates
- 2Intermediate: competitive analysis, prioritization frameworks, PRDs
- 3Advanced: product strategy, go-to-market planning, OKR setting
- 4Expert: product vision, market positioning, business model innovation
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.7★★★★★25 reviews- ★★★★★Benjamin Chawla· Dec 28, 2024
chrome-extension has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Aanya Sethi· Dec 16, 2024
chrome-extension fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Ganesh Mohane· Dec 4, 2024
Registry listing for chrome-extension matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Sakshi Patil· Nov 23, 2024
Keeps context tight: chrome-extension is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Hana Garcia· Nov 19, 2024
Solid pick for teams standardizing on skills: chrome-extension is focused, and the summary matches what you get after install.
- ★★★★★Aanya Taylor· Nov 7, 2024
chrome-extension is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Yash Thakker· Nov 3, 2024
chrome-extension reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Maya Li· Oct 26, 2024
Solid pick for teams standardizing on skills: chrome-extension is focused, and the summary matches what you get after install.
- ★★★★★Dhruvi Jain· Oct 22, 2024
We added chrome-extension from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Chaitanya Patil· Oct 14, 2024
I recommend chrome-extension for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
showing 1-10 of 25