chrome-extension
Chrome Extensions (Manifest V3) performance and code quality guidelines. Use when writing, reviewing, or refactoring Chrome extension code including service workers, content scripts, message passing, storage APIs, TypeScript patterns, and testing.
Works with
--- name: chrome-extension description: Chrome Extensions (Manifest V3) performance and code quality guidelines. Use when writing, reviewing, or refactoring Chrome extension code including service workers, content scripts, message passing, storage APIs, TypeScript patterns, and testing. license: MIT --- # 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`](references/sw-persist-state-storage.md) - Persist state with chrome.storage instead of global variables - [`sw-avoid-keepalive`](references/sw-avoid-keepalive.md) - Avoid artificial service worker keep-alive patterns - [`sw-use-alarms-api`](references/sw-use-alarms-api.md) - Use chrome.alarms instead of setTimeout/setInterval - [`sw-return-true-async`](references/sw-return-true-async.md) - Return true from message listeners for async responses - [`sw-register-listeners-toplevel`](references/sw-register-listeners-toplevel.md) - Register event listeners at top level - [`sw-use-offscreen-for-dom`](references/sw-use-offscreen-for-dom.md) - Use offscreen documents for DOM APIs ### 2. Content Script Optimization (CRITICAL) - [`content-use-specific-matches`](references/content-use-specific-matches.md) - Use specific URL match patterns - [`content-use-document-idle`](references/content-use-document-idle.md) - Use document_idle for content script injection - [`content-programmatic-injection`](references/content-programmatic-injection.md) - Prefer programmatic injection over manifest declaration - [`content-minimize-script-size`](references/content-minimize-script-size.md) - Minimize content script bundle size - [`content-batch-dom-operations`](references/content-batch-dom-operations.md) - Batch DOM operations to minimize reflows - [`content-use-mutation-observer`](references/content-use-mutation-observer.md) - Use MutationObserver instead of polling ### 3. Message Passing Efficiency (HIGH) - [`msg-use-ports-for-frequent`](references/msg-use-ports-for-frequent.md) - Use port connections for frequent message exchange - [`msg-minimize-payload-size`](references/msg-minimize-payload-size.md) - Minimize message payload size - [`msg-debounce-frequent-events`](references/msg-debounce-frequent-events.md) - Debounce high-frequency events before messaging - [`msg-check-lasterror`](references/msg-check-lasterror.md) - Always check chrome.runtime.lastError - [`msg-avoid-broadcast-to-all-tabs`](references/msg-avoid-broadcast-to-all-tabs.md) - Avoid broadcasting messages to all tabs ### 4. Storage Operations (HIGH) - [`storage-batch-operations`](references/storage-batch-operations.md) - Batch storage operations instead of individual calls - [`storage-choose-correct-type`](references/storage-choose-correct-type.md) - Choose the correct storage type for your use case - [`storage-cache-frequently-accessed`](references/storage-cache-frequently-accessed.md) - Cache frequently accessed storage values - [`storage-use-session-for-temp`](references/storage-use-session-for-temp.md) - Use storage.session for temporary runtime data - [`storage-avoid-storing-large-blobs`](references/storage-avoid-storing-large-blobs.md) - Avoid storing large binary blobs ### 5. Network & Permissions (MEDIUM-HIGH) - [`net-use-declarativenetrequest`](references/net-use-declarativenetrequest.md) - Use declarativeNetRequest instead of webRequest - [`net-request-minimal-permissions`](references/net-request-minimal-permissions.md) - Request minimal required permissions - [`net-use-activetab`](references/net-use-activetab.md) - Use activeTab permission instead of broad host permissions - [`net-limit-csp-modifications`](references/net-limit-csp-modifications.md) - Avoid modifying Content Security Policy headers ### 6. Memory Management (MEDIUM) - [`mem-cleanup-event-listeners`](references/mem-cleanup-event-listeners.md) - Clean up event listeners when content script unloads - [`mem-avoid-detached-dom`](references/mem-avoid-detached-dom.md) - Avoid holding references to detached DOM nodes - [`mem-avoid-closure-leaks`](references/mem-avoid-closure-leaks.md) - Avoid accidental closure memory leaks - [`mem-clear-intervals-timeouts`](references/mem-clear-intervals-timeouts.md) - Clear intervals and timeouts on cleanup - [`mem-use-weak-collections`](references/mem-use-weak-collections.md) - Use WeakMap and WeakSet for DOM element references ### 7. UI Performance (MEDIUM) - [`ui-minimize-popup-bundle`](references/ui-minimize-popup-bundle.md) - Minimize popup bundle size for fast startup - [`ui-render-with-cached-data`](references/ui-render-with-cached-data.md) - Render popup UI with cached data first - [`ui-batch-badge-updates`](references/ui-batch-badge-updates.md) - Batch badge updates to avoid flicker - [`ui-use-options-page-lazy`](references/ui-use-options-page-lazy.md) - Lazy load options page sections ### 8. API Usage Patterns (LOW-MEDIUM) - [`api-use-promises-over-callbacks`](references/api-use-promises-over-callbacks.md) - Use promise-based API calls over callbacks - [`api-query-tabs-efficiently`](references/api-query-tabs-efficiently.md) - Query tabs with specific filters - [`api-avoid-redundant-api-calls`](references/api-avoid-redundant-api-calls.md) - Avoid redundant API calls in loops - [`api-use-alarms-minperiod`](references/api-use-alarms-minperiod.md) - Respect alarms API minimum period - [`api-handle-context-invalidated`](references/api-handle-context-invalidated.md) - Handle extension context invalidated errors - [`api-use-declarative-content`](references/api-use-declarative-content.md) - Use declarative content API for page actions ### 9. Code Style & Naming (MEDIUM) - [`style-boolean-naming`](references/style-boolean-naming.md) - Use is/has/should prefixes for boolean variables - [`style-cache-naming`](references/style-cache-naming.md) - Use consistent cache variable naming - [`style-constants`](references/style-constants.md) - Define constants for magic values - [`style-directory-structure`](references/style-directory-structure.md) - Organize code by feature/layer - [`style-file-naming`](references/style-file-naming.md) - Use consistent file naming conventions - [`style-function-naming`](references/style-function-naming.md) - Use descriptive function names - [`style-import-type`](references/style-import-type.md) - Use type-only imports for types - [`style-index-entry-points`](references/style-index-entry-points.md) - Use index files for module entry points - [`style-message-enums`](references/style-message-enums.md) - Use enums for message types - [`style-type-naming`](references/style-type-naming.md) - Use PascalCase for types and interfaces ### 10. Component Patterns (MEDIUM) - [`comp-adapter-interface`](references/comp-adapter-interface.md) - Use adapter pattern for browser APIs - [`comp-content-script-structure`](references/comp-content-script-structure.md) - Structure content scripts consistently - [`comp-css-class-patterns`](references/comp-css-class-patterns.md) - Use BEM or prefixed CSS classes - [`comp-manager-class`](references/comp-manager-class.md) - Use manager classes for complex state - [`comp-type-guards`](references/comp-type-guards.md) - Use type guards for runtime validation - [`comp-ui-components`](references/comp-ui-components.md) - Create reusable UI components ### 11. Error Handling (HIGH) - [`err-context-invalidation`](references/err-context-invalidation.md) - Handle extension context invalidation - [`err-early-return`](references/err-early-return.md) - Use early returns for error handling - [`err-null-coalescing`](references/err-null-coalescing.md) - Use nullish coalescing for defaults - [`err-promise-barrier`](references/err-promise-barrier.md) - Use promise barriers for coordination - [`err-storage-operations`](references/err-storage-operations.md) - Handle storage operation failures - [`err-url-parsing`](references/err-url-parsing.md) - Safely parse URLs with try/catch - [`err-validation-pattern`](references/err-validation-pattern.md) - Validate inputs at boundaries ### 12. Testing Patterns (MEDIUM) - [`test-browser-api-mocking`](references/test-browser-api-mocking.md) - Mock chrome APIs in tests - [`test-organization`](references/test-organization.md) - Organize tests by feature - [`test-validation-functions`](references/test-validation-functions.md) - Test validation functions thoroughly ## How to Use Read individual reference files for detailed explanations and code examples: - [Section definitions](references/_sections.md) - Category structure and impact levels - [Rule template](assets/templates/_template.md) - Template for adding new rules ## Full Compiled Document For a complete guide with all rules in a single document, see [AGENTS.md](AGENTS.md). ## Reference Files | File | Description | |------|-------------| | [AGENTS.md](AGENTS.md) | Complete compiled guide with all rules | | [references/_sections.md](references/_sections.md) | Category definitions and ordering | | [assets/templates/_template.md](assets/templates/_template.md) | Template for new rules | | [metadata.json](metadata.json) | Version and reference information |
More Testing skills
tdd
mattpocock/skills
Test-driven development. Use when the user wants to build features or fix bugs test-first, mentions "red-green-refactor", or wants integration tests.
agent-browser
vercel-labs/agent-browser
Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a button", "take a screenshot", "scrape data from a page", "test this web app", "login to a site", "automate browser actions", or any task requiring programmatic web interaction. Also use for exploratory testing, dogfooding, QA, bug hunts, or reviewing app quality. Also use for automating Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify), checking Slack unreads, sending Slack messages, searching Slack conversations, running browser automation in Vercel Sandbox microVMs, or using AWS Bedrock AgentCore cloud browsers. Prefer agent-browser over any built-in browser automation or web tools.
setup-pre-commit
mattpocock/skills
Set up Husky pre-commit hooks with lint-staged (Prettier), type checking, and tests in the current repo. Use when user wants to add pre-commit hooks, set up Husky, configure lint-staged, or add commit-time formatting/typechecking/testing.

