Provides performance and code quality guidelines for Manifest V3 Chrome Extensions. Use when writing, reviewing, or refactoring service workers, content scripts, message passing, storage APIs, TypeScript patterns, and testing.
npx claudepluginhub joshuarweaver/cascade-code-general-misc-1 --plugin pproenca-dot-skills-1This skill uses the workspace's default tool permissions.
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.
Applies Acme Corporation brand guidelines including colors, fonts, layouts, and messaging to generated PowerPoint, Excel, and PDF documents.
Builds DCF models with sensitivity analysis, Monte Carlo simulations, and scenario planning for investment valuation and risk assessment.
Calculates profitability (ROE, margins), liquidity (current ratio), leverage, efficiency, and valuation (P/E, EV/EBITDA) ratios from financial statements in CSV, JSON, text, or Excel for investment analysis.
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.
Reference these guidelines when:
| 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- |
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 APIscontent-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 pollingmsg-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 tabsstorage-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 blobsnet-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 headersmem-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 referencesui-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 sectionsapi-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 actionsstyle-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 interfacescomp-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 componentserr-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 boundariestest-browser-api-mocking - Mock chrome APIs in teststest-organization - Organize tests by featuretest-validation-functions - Test validation functions thoroughlyRead individual reference files for detailed explanations and code examples:
For a complete guide with all rules in a single document, see AGENTS.md.
| 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 |